Theophilus Opoku Bannor
Forum Replies Created
-
Did you find a solution yet? Im facing similar issue on my main website. On my small website, the images were not up to 500 so everything works fine. On the other hand the plugin keeps throwing ‘Maybe you have some plugin that is interfering, because I didn’t get a valid json back. Try disabling the debug mode of the site or press ok to try to continue.l’
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Change the location of Brand Description.Somebody from?@quadlayers Please help me on this.
Hi @daanvandenbergh I am seeing these errors again in the chrome developer side
GET https://shopwice.com/wp-content/uploads/caos/?id=G-W9QJ5JN81Q net::ERR_ABORTED 403
(index):225 GET https://shopwice.com/wp-content/uploads/caos/?id=G-W9QJ5JN81Q%22 net::ERR_ABORTED 403thank you so much @daanvandenbergh . It has been resolved now. I have removed the other analytics code. I love how you respond to support.
Hi @daanvandenbergh I did as you said but it not resolved. Im still seeing analytics not tracking traffic.
@daanvandenbergh here is a screenshot of the settings page.
Basic settings https://snipboard.io/UO06jw.jpg
Advance settings https://paste.pics/OAB0E
anaytic settings https://paste.pics/OAB0V
I mean my website is a woocommerce store when I said ‘”setting up with woocommerce”
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Add second description field@paddyuboot @onlinetravelgear @jonwarner @quadlayers
I have seen a code here that does exactly what you’re requesting, but the functionality is not complete. The edit form field can only output plain text. It does not work with images, shortcodes, etc.
Quadlayers, add this feature. Its very needful for seo
Forum: Plugins
In reply to: [WooReer] Location picker api not finishing loadingStill, it did not work. when I input the first api, it marks correct but the second api field does not finish loading. Im using google chrome on a hp laptop.
Forum: Themes and Templates
In reply to: [Kadence] forms not working with child themeI am currently switched to the parent theme with the custom codes in the child theme been transferred but the forms work well. So I think the issue is with the child theme. I downloaded it from the kadence website.
Forum: Themes and Templates
In reply to: [Kadence] forms not working with child themethese are what i have in my child theme php
/** * Initiate the product title switch. */ function init_custom_woocommerce_product_loop_tags() { if ( class_exists( 'Kadence\Theme' ) ) { $kadence_theme_class = Kadence\Theme::instance(); remove_action( 'woocommerce_shop_loop_item_title', array( $kadence_theme_class->components['woocommerce'], 'archive_title_with_link' ) ); add_action( 'woocommerce_shop_loop_item_title', 'custom_kadence_archive_title' ); } } add_action( 'init', 'init_custom_woocommerce_product_loop_tags' ); /** * Show the product title in the product loop. */ function custom_kadence_archive_title() { global $product; $link = apply_filters( 'woocommerce_loop_product_link', get_the_permalink(), $product ); echo '<h3 class="' . esc_attr( apply_filters( 'woocommerce_product_loop_title_classes', 'woocommerce-loop-product__title' ) ) . '"><a href="' . esc_url( $link ) . '" class="woocommerce-LoopProduct-link-title woocommerce-loop-product__title_ink">' . get_the_title() . '</a></h3>'; } /** * @snippet Add new textarea to Product Category Pages - WooCommerce * @how-to Get CustomizeWoo.com FREE * @author Rodolfo Melogli * @compatible WooCommerce 3.9 * @donate $9 https://businessbloomer.com/bloomer-armada/ */ // --------------- // 1. Display field on "Add new product category" admin page add_action( 'product_cat_add_form_fields', 'bbloomer_wp_editor_add', 10, 2 ); function bbloomer_wp_editor_add() { ?> <div class="form-field"> <label for="seconddesc"><?php echo __( 'Second Description', 'woocommerce' ); ?></label> <?php $settings = array( 'textarea_name' => 'seconddesc', 'quicktags' => array( 'buttons' => 'em,strong,link' ), 'tinymce' => array( 'theme_advanced_buttons1' => 'bold,italic,strikethrough,separator,bullist,numlist,separator,blockquote,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,undo,redo,separator', 'theme_advanced_buttons2' => '', ), 'editor_css' => '<style>#wp-excerpt-editor-container .wp-editor-area{height:175px; width:100%;}</style>', ); wp_editor( '', 'seconddesc', $settings ); ?> <p class="description"><?php echo __( 'This is the description that goes BELOW products on the category page', 'woocommerce' ); ?></p> </div> <?php } // --------------- // 2. Display field on "Edit product category" admin page add_action( 'product_cat_edit_form_fields', 'bbloomer_wp_editor_edit', 10, 2 ); function bbloomer_wp_editor_edit( $term ) { $second_desc = htmlspecialchars_decode( get_woocommerce_term_meta( $term->term_id, 'seconddesc', true ) ); ?> <tr class="form-field"> <th scope="row" valign="top"><label for="second-desc"><?php echo __( 'Second Description', 'woocommerce' ); ?></label></th> <td> <?php $settings = array( 'textarea_name' => 'seconddesc', 'quicktags' => array( 'buttons' => 'em,strong,link' ), 'tinymce' => array( 'theme_advanced_buttons1' => 'bold,italic,strikethrough,separator,bullist,numlist,separator,blockquote,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,undo,redo,separator', 'theme_advanced_buttons2' => '', ), 'editor_css' => '<style>#wp-excerpt-editor-container .wp-editor-area{height:175px; width:100%;}</style>', ); wp_editor( $second_desc, 'seconddesc', $settings ); ?> <p class="description"><?php echo __( 'This is the description that goes BELOW products on the category page', 'woocommerce' ); ?></p> </td> </tr> <?php } // --------------- // 3. Save field @ admin page add_action( 'edit_term', 'bbloomer_save_wp_editor', 10, 3 ); add_action( 'created_term', 'bbloomer_save_wp_editor', 10, 3 ); function bbloomer_save_wp_editor( $term_id, $tt_id = '', $taxonomy = '' ) { if ( isset( $_POST['seconddesc'] ) && 'product_cat' === $taxonomy ) { update_woocommerce_term_meta( $term_id, 'seconddesc', esc_attr( $_POST['seconddesc'] ) ); } } // --------------- // 4. Display field under products @ Product Category pages add_action( 'kadence_after_footer', 'bbloomer_display_wp_editor_content', 5 ); function bbloomer_display_wp_editor_content() { if ( is_product_taxonomy() ) { $term = get_queried_object(); if ( $term && ! empty( get_woocommerce_term_meta( $term->term_id, 'seconddesc', true ) ) ) { echo '<p class="term-description">' . wc_format_content( htmlspecialchars_decode( get_woocommerce_term_meta( $term->term_id, 'seconddesc', true ) ) ) . '</p>'; } } } /** * remove add to cart buttons on shop archive page */ remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10);
the css is just the default one. i haven’t touch the css
Forum: Plugins
In reply to: [Facebook for WooCommerce] unable to connect woocommerce to facebookThe problem seems to be that my woocommerce was not using a supported currency. after changing to USD, I was able to set up. Thanks.
Forum: Plugins
In reply to: [Facebook for WooCommerce] Error Message: Oops, something went wrongI started getting this issue in April 2020, to date i keep getting this error message when i tried to connect fb to woocommerce. i cleared all my previous catalogs just to make sure everything will look fresh. i created a new catalog by trying to connect fb to woocommerce again but the same message appeared. Though the catalog was registered successfully, the connection was interrupted.I hope you fix this issue soon
Forum: Themes and Templates
In reply to: [Neve] Product category title and description not showingHi @poonam9 , thanks for the great work done. The said hooks only work for product-category. h1 is missing on product tag, brands, and other woocommerce archives. Can you share how I can fix that?
Forum: Plugins
In reply to: [Autoptimize] Mobile navigation, sidebars and banner not respondinI have enable only JS optimization options. Css and html are inactive and images optimization isn’t the cause.
Forum: Plugins
In reply to: [Autoptimize] banner does not finish loading and sticky sidebar not workingWell, I think the excludes worked but it did not gave the results we were after. I realized each exclude reduced the number of errors on the page.
I have the asynched deactivated now and everything works perfect.
Thanks for the awesome support and your selfless service. I’m much grateful.