Please use “playsinline” attribute in the video tag, find example below.
<video playsinline loop muted >
<source src="video.mp4" type="video/mp4">
</video>
Please use “playsinline” attribute in the video tag, find example below.
<video playsinline loop muted >
<source src="video.mp4" type="video/mp4">
</video>
1. Open command line
2. Go to the particular directory using cd command. "cd sites\default"
3. Use attrib -r settings.php to make it writable.
<pre>
It's a permission issue.
Sudo chmod 777 /opt/lamp/htdocs/joomla/administrator/cache
</pre>
<pre>
$terms = get_the_terms( post_id, 'taxonomy' );
if ($terms) {
foreach($terms as $term) {
wp_remove_object_terms( $line[0], $term->slug, 'taxonomy' );
}
}
</pre>
Please find below code
var count = 2
var duration = 500;
jQuery('.owl-slider').trigger('to.owl.carousel', [count, duration, true]);
<script>
jQuery(document).ready(function(){
window.history.replaceState(null, null, window.location.pathname);
});
</script>
<a href="https://calendar.google.com/calendar/render?action=TEMPLATE&text=Avi Web Event&details=Event details&dates=20220720T053000/20220725T073000&location=Online" target="_blank">Add to Calendar</a>
.owl-carousel .animated {
-webkit-animation-duration: 20ms;
animation-duration: 20ms;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
global $wpdb;
global $charset_collate;
$table_name = $wpdb->prefix . 'custom_table';
$sql = "CREATE TABLE IF NOT EXISTS $table_name (
`ID` int(20) NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL,
`mobile_number` varchar(200) NOT NULL,
`email` varchar(20) NOT NULL,
PRIMARY KEY (`ID`)
)$charset_collate;";
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
dbDelta( $sql );
<pre>
Add below code in function.php
add_filter( 'wpcf7_load_js', '__return_false' );
add_filter( 'wpcf7_load_css', '__return_false' );
</pre>