Te Calleja
Forum Replies Created
-
Forum: Plugins
In reply to: [Filter & Grids] Edit the post layoutOhhh! Got it, it works. Thank you!!!
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Day of the week in grid viewGot this, thank you!
FYI the issue has been resolved.
I logged in to my FB page business suite and added both www and non-www versions of my domain in the set up.
Thank you.Hi, just an update — the deactivation form no longer shows up on the plugins page, but the FB Chat icon is still not showing up on my site.
I have tried doing a hard refresh, clearing my cache, and disabling all the other plugins, but it is still not showing.
My site is hosted on Digital Ocean, if that makes a difference.
Hope this can be resolved soon.Forum: Plugins
In reply to: [PW WooCommerce Gift Cards] Include product name in emailGot this, thank you so much!
Forum: Plugins
In reply to: [WP Store Locator] store categories in urlWhat I meant to ask is, since it is possible to do this shortcode [wpsl template=”default” category=”fast-food,italian”] or this shortcode [wpsl template=”default” category_type=”checkboxes” category_selection=”bmw,mercedes,porche”]
is it possible to have multiple category names on the url like this:
https://yourdomain.com/your-store-locator-page/?wpsl_cat_name=bmw,mercedes,porcheSame here, using Nivo Slider
$(...).nivoSlider is not a function
It only shows the last slide, and slideshow is not playing.
Updated to latest WordPress version 4.6, and latest Meta Slider version 3.3.7. Tried to deactivate then reactivate the plugin but the slideshow still is not working.
Link to our site https://quantumamusement.com.ph/
Forum: Plugins
In reply to: [Watu Quiz] embed media/youtube videoI put in a youtube video link in a question, but the video is not showing up. I’m testing on a fresh install using Twenty fifteen theme on my localhost. Will try on a live site.
Forum: Plugins
In reply to: [WP Store Locator] CSV import – no wp_sl tableSorry! I found the solution here https://www.ads-software.com/support/topic/import-into-v2?replies=26
Forum: Plugins
In reply to: [Super Zoom Gallery] Innerzoom issue with thumbnails on left sideI resolved my own issue.
In the szg-script.js file, line 144 (determining the left inner zoom offset), I changed the 0 to 300. I tried a few numbers until I got to the right amount (I am assuming this is the width of the medium sized image).
Forum: Fixing WordPress
In reply to: Link menu dissapearedUhmm I think you may have deleted your navigation (possibly in your header.php file?).
Are you using the menus? Maybe you can just add in <?php wp_nav_menu(); ?> somewhere in your header, then just rebuild from there.
Forum: Plugins
In reply to: [WooCommerce] Remove free word in shipping method labelThe code above is for removing the word “Free!” when your product price is 0.
To remove the word (Free) in shipping, use thisadd_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_local_pickup_free_label', 10, 2 ); function remove_local_pickup_free_label($full_label, $method){ $full_label = str_replace("(Free)","",$full_label); return $full_label; }
Found the solution here https://stackoverflow.com/questions/22353854/woocommerce-custom-function-for-free-shipping-label
Forum: Fixing WordPress
In reply to: Dashboard CSS not loadingThis
define( 'CONCATENATE_SCRIPTS', false );
worked for me. Just make sure you’re using the ‘ (the straight one) and not the ’ (the curly one) — I think one is an apostrophe, the other is a single quote. It made all the difference in my case.Forum: Plugins
In reply to: [WooCommerce] Add Extra Fields on User Registration?To add custom fields for the buyers, use this https://docs.woothemes.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/ (Lesson 3, adding custom special field).
To add fields for user registration, use this https://codex.www.ads-software.com/Customizing_the_Registration_Form
Hope this helps!
Forum: Fixing WordPress
In reply to: "Some" Enquiries Not Being Received via Contact Formbeen a while since i used contact form 7 — i think you add a shortcode to your contact page or the page where you want the form to show up.