7prny
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: helpgo back to the previous version of WordPress
just add bellow function to Theme Functions (functions.php)
add_filter(‘use_block_editor_for_post’, ‘__return_false’);
.owp-floating-bar.show {
top: 88px;
}can you add this to theme css…..and check its working or not
Forum: Themes and Templates
In reply to: [OceanWP] Dropdown menu.navigation .megamenu>li>a.menu-link {
font-size: 16px;
font-weight: 600;
}add it to the theme custom CSS
Forum: Themes and Templates
In reply to: [OceanWP] Checkout page with stepsgo to woocommerce
and choose force shipping to billing addressForum: Themes and Templates
In reply to: [OceanWP] Remove Quick View.owp-quick-view {
display: none;
}add this in custom CSS
Forum: Themes and Templates
In reply to: [OceanWP] How to deactivate zoom in mobile devicesadd this function
// REMOVE ZOOM MAGNIFIER FUNCTION PRODUCT PAGES in mobile devicesremove_filter( ‘woocommerce_single_product_image_html’, ‘wpb_aiz_single_image_filter’ );
add_action( ‘init’, ‘wpb_wiz_mobile_only’ );
function wpb_wiz_mobile_only(){
if ( !wp_is_mobile() ) {
add_filter( ‘woocommerce_single_product_image_html’, ‘wpb_aiz_single_image_filter’ );
}
}- This reply was modified 7 years, 7 months ago by 7prny.
Forum: Themes and Templates
In reply to: [OceanWP] How to deactivate zoom in mobile devicesadd this function
// REMOVE ZOOM MAGNIFIER FUNCTION PRODUCT PAGES //
add_action( ‘after_setup_theme’, ‘remove_pgz_theme_support’, 100 );function remove_pgz_theme_support() {
remove_theme_support( ‘wc-product-gallery-zoom’ );
}Forum: Fixing WordPress
In reply to: Can not submit post or media?uninstall all plugin the reinstall all one by one
Forum: Themes and Templates
In reply to: [OceanWP] Remove Magnifying Glass Icon in Single Product Pageadd this css to custom css
.woocommerce-product-gallery .woocommerce-product-gallery__trigger {
visibility: hidden;
}