Title: prannaya's Replies | WordPress.org

---

# 7prny

  [  ](https://wordpress.org/support/users/7prny/)

 *   [Profile](https://wordpress.org/support/users/7prny/)
 *   [Topics Started](https://wordpress.org/support/users/7prny/topics/)
 *   [Replies Created](https://wordpress.org/support/users/7prny/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/7prny/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/7prny/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/7prny/engagements/)
 *   [Favorites](https://wordpress.org/support/users/7prny/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [help](https://wordpress.org/support/topic/help-768/)
 *  [7prny](https://wordpress.org/support/users/7prny/)
 * (@7prny)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/help-768/#post-11026860)
 * go 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’);
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Sticky top bar is hidden by sticky header when I scroll](https://wordpress.org/support/topic/sticky-top-bar-is-hidden-by-sticky-header-when-i-scroll/)
 *  [7prny](https://wordpress.org/support/users/7prny/)
 * (@7prny)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/sticky-top-bar-is-hidden-by-sticky-header-when-i-scroll/#post-10878020)
 * .owp-floating-bar.show {
    top: 88px; }
 * can you add this to theme css…..and check its working or not
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Dropdown menu](https://wordpress.org/support/topic/dropdown-menu-66/)
 *  [7prny](https://wordpress.org/support/users/7prny/)
 * (@7prny)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/dropdown-menu-66/#post-10873778)
 * .navigation .megamenu>li>a.menu-link {
    font-size: 16px; font-weight: 600; }
 * add it to the theme custom CSS
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Checkout page with steps](https://wordpress.org/support/topic/checkout-page-with-steps/)
 *  [7prny](https://wordpress.org/support/users/7prny/)
 * (@7prny)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/checkout-page-with-steps/#post-10832438)
 * go to [woocommerce ](https://docs.woocommerce.com/wp-content/uploads/2015/07/woo-shipping-options.png?w=950)
   
   and choose force shipping to billing address
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Remove Quick View](https://wordpress.org/support/topic/remove-quick-view/)
 *  [7prny](https://wordpress.org/support/users/7prny/)
 * (@7prny)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/remove-quick-view/#post-10832401)
 * .owp-quick-view {
    display: none; }
 * add this in custom CSS
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] How to deactivate zoom in mobile devices](https://wordpress.org/support/topic/how-to-deactivate-zoom-in-mobile-devices/)
 *  [7prny](https://wordpress.org/support/users/7prny/)
 * (@7prny)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/how-to-deactivate-zoom-in-mobile-devices/#post-10796971)
 * add this function
    // REMOVE ZOOM MAGNIFIER FUNCTION PRODUCT PAGES in mobile 
   devices
 * remove_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, 9 months ago by [7prny](https://wordpress.org/support/users/7prny/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] How to deactivate zoom in mobile devices](https://wordpress.org/support/topic/how-to-deactivate-zoom-in-mobile-devices/)
 *  [7prny](https://wordpress.org/support/users/7prny/)
 * (@7prny)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/how-to-deactivate-zoom-in-mobile-devices/#post-10796929)
 * add 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can not submit post or media?](https://wordpress.org/support/topic/can-not-submit-post-or-media/)
 *  [7prny](https://wordpress.org/support/users/7prny/)
 * (@7prny)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/can-not-submit-post-or-media/#post-10776455)
 * uninstall all plugin the reinstall all one by one
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[OceanWP] Remove Magnifying Glass Icon in Single Product Page](https://wordpress.org/support/topic/remove-magnifying-glass-icon-in-single-product-page/)
 *  [7prny](https://wordpress.org/support/users/7prny/)
 * (@7prny)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/remove-magnifying-glass-icon-in-single-product-page/#post-10776447)
 * add this css to custom css
 * .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    visibility:
   hidden; }

Viewing 9 replies - 1 through 9 (of 9 total)