csmithFCEdge
Forum Replies Created
-
Forum: Reviews
In reply to: [Redux Framework] Not working well..My website crashed too!!! Not good! http://www.stuarttherapeutics.com
Forum: Plugins
In reply to: [Online Scheduling and Appointment Booking System – Bookly] Multiple TimesI had to delete the plugin folder called ‘appointment booking’ to get the dashboard back up….
Forum: Plugins
In reply to: [Online Scheduling and Appointment Booking System – Bookly] Multiple TimesHello, I purchased the plugin and am receiving this Fatal error: Call to undefined method BooklyLite\Lib\Plugin::enabled() in /home/jcadmin2015/public_html/wp-content/plugins/appointment-booking/lib/Config.php on line 531
How can I fix this? Thank you! I have Bookly Lite installed, but when I go to activate Bookly, I got this error…..
Forum: Plugins
In reply to: [Booking Calendar] Multiple Availablities Per Time SlotThank you for your fast response!
Forum: Plugins
In reply to: [Booking Calendar] Multiple Availablities Per Time SlotI’m only seeing a calendar for the day, but no time slot to enter….
Forum: Plugins
In reply to: [AddToAny Share Buttons] SMS buttonI wish there was a solution for this already, I am having the same issue! Can’t seem to find out how to fix it…..might have to find a new plugin 🙁
Forum: Plugins
In reply to: [AddToAny Share Buttons] SMS – Text Message ButtonI am having the same issue. I’m using a popular messaging app called Chomp and the SMS button doesn’t share the page properly via mobile on HTC One M8.
Forum: Plugins
In reply to: [Contact Form 7] Alignment of fieldsSure, there’s a splash page plugin though: http://www.yourtraveldna.com/ the site is not live yet.
Forum: Plugins
In reply to: [WooCommerce] Sizes Not ShowingOk, I followed all the steps and I see the Size dropdown field, but it only says ‘Choose an option’ but no sizes appear. See here: http://dev.theshoppersexpress.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-20-at-11.02.07-AM.png I have it set up the same way on another site and it seems to be working fine. The only difference is the Woocommerce version, I’m updated to the latest, but the other site has an older version, but the size attribute is working on the other site.
Forum: Plugins
In reply to: [WooCommerce] Sizes Not ShowingOk, I had the mix up of having the product listed as a simple product, but now its saying ‘This product is currently out of stock and unavailable.’
Forum: Plugins
In reply to: [WooCommerce] Sizes Not ShowingI thought that’s what I did, but I’m not seeing the ‘Used for variations’ checkbox
Forum: Plugins
In reply to: [WooCommerce USPS Shipping Method Plugin] How to only ship to certain statesThat code didn’t work at all, I added it to my functions.php file and it brought my whole site down.
Forum: Plugins
In reply to: [WooCommerce USPS Shipping Method Plugin] How to only ship to certain statesOk, I see the Snippet 2 code:
_____________________________________
add_filter(‘woocommerce_package_rates’, ‘wf_remove_shipping_pro_rate_when_free_shipping_is_applicable’, 10, 2);function wf_remove_shipping_pro_rate_when_free_shipping_is_applicable($rates, $package)
{
$exclude = array(
‘international_delivery’ => array(
‘CA’
) ,
‘wf_fedex_woocommerce_shipping:FEDEX_GROUND’ => array(
‘FL’
)
);
if (is_array($exclude)) {
foreach($exclude as $shipping_method => $excluded_states) {
if (in_array(WC()->customer->shipping_state, $excluded_states)) {
unset($rates[$shipping_method]);
}
}
}return $rates;
}_____________________________________
I’m a bit confused as to why it says Fedex if we’re using USPS and why does it say CA in one part of the code and FL in the other part? I only want to ship to the continental US via USPS, is this still the correct code?
Forum: Plugins
In reply to: [Contact Form 7] htaccess File Blocking Contact Form SubmissionsIt’s just a simple .htacess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Plugins
In reply to: [Showcase - Visual Composer Addon] Set WidthI think I figured it out. Instead of having only 6 logos show, I changed it to 8 and it seems to be working better. Thank you!