mfghost
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] None Of My Products Are Showing In Google Search Engine Resultsyeah I managed to fix the Google merchant feed so maybe that had something to do with it. Now I just have to see why hardly any of my posts are being indexed.
Forum: Themes and Templates
In reply to: [Botiga] Can’t Turn On Product ReviewsI fixed it
Forum: Themes and Templates
In reply to: [Botiga] Can’t Turn On Product Reviewsyeah man I tried that too, “purge all”….I even tried to install a different theme, I uploaded it and still no review options. Then I installed a reviews plugin & that didn’t show either.
Forum: Themes and Templates
In reply to: [Botiga] Can’t Turn On Product Reviewsi think it just updated like 2 nights ago…it says 8.2.1 is the version
Forum: Themes and Templates
In reply to: [Botiga] Can’t Turn On Product Reviewsi checked there earlier & the checkbox & “enable reviews” wasn’t there. I saw other posts saying to check there but it wasn’t there.
Forum: Fixing WordPress
In reply to: 3 Home Pages, Which To Delete?@bilo09 thanks but I already backed the site up and deleted them. Everything is fine.
Forum: Plugins
In reply to: [LiteSpeed Cache] How To Find QC Domaindamn. OK thanks.
Forum: Fixing WordPress
In reply to: 3 Home Pages, Which To Delete?@ozpinadigital when I click “edit” on both home pages to see what the links are & copy the links & paste in the browser the pages come up empty. I’ll backup the site and delete them and see what happens, thanks.
Forum: Reviews
In reply to: [Google for WooCommerce] Rename to Forever ErrorsIt seems like no matter which of the numerous feed plugins, manual entries, etc. Google Merchant Center displays errors.
I put the code below in the Appearance>Customize>Additional CSS with all the rest of the CSS I added.
header.bhfb.bhfb-header.bhfb-desktop { box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2); }
But that didn’t work then I tried the following which also didn’t work.
div.bhfb-row-wrapper.bhfb-main_header_row { box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); }
- This reply was modified 1 year, 1 month ago by mfghost.
im trying to figure out the div to use. Anything I try makes a shadow in the middle or the bottom of the header or nothing shows at all.
@christin_schmiede nice! That was driving me crazy, plus I wasn’t sure how long it was doing it for & how many customers might have thought the site was broken or something. I’m glad it’s fixed.
hey just place this at the bottom of your theme’s function.php file. I used this and it fixed it for me:
// Double Tap Fix Start function fix_ios_double_tap_issue() { echo '<script>document.addEventListener("touchstart", function() {},false);</script>'; } add_action('wp_head', 'fix_ios_double_tap_issue'); // Double Tap Fix End
Make sure you clear your cache after you add the code & refresh the store page.
i fixed it, thanks.
I found a fix for the double-tap/iPhone issue, well it worked for me. Before, customers had to click twice on the pagination numbers (only when in the woocommerce store), the product variations and the add to cart button. Once I added this code to functions.php inside the theme folder and cleared the cache everything worked with one click.
function fix_ios_double_tap_issue() { echo '<script>document.addEventListener("touchstart", function() {},false);</script>'; } add_action('wp_head', 'fix_ios_double_tap_issue');