newvibe
Forum Replies Created
-
Thanks for replying. I just tested with a few new podcasts and all is working well now.
This broke one of my client’s sites as well. I can confirm this trailing comma is OK with php 7.3.
Forum: Plugins
In reply to: [BigCommerce For WordPress] Items do not show in CartI suspect this is a cache issue. Try another browser or device. I just added to cart on your site and it worked fine for me!
Forum: Plugins
In reply to: [BigCommerce For WordPress] BigCommerce SearchYou can use the built-in WordPress search feature, and by adding this code to your functions.php file, you can make it so that only bigcommerce products show in the search:
function searchfilter($query) { if ($query->is_search && !is_admin() ) { $query->set('post_type',array('bigcommerce_product')); } return $query; } add_filter('pre_get_posts','searchfilter');This code was copied from here: https://www.wpbeginner.com/wp-tutorials/how-to-limit-search-results-for-specific-post-types-in-wordpress/ and I’ve updated the post_type array so that it targets the products only.
This seems to explain why when I preview new pages that are still drafts and therefore contain a question mark in the class definition like this : <body class=”some-class another-class ?p=28734″>, the whole body is missing so I have a white screen and no error messages.
So, please include a question mark in the improved regex above!
Forum: Plugins
In reply to: [BigCommerce For WordPress] Best Theme for WP with BigCommerceIdeally, you’d use a theme that doesn’t have any ecommerce features built into it. That way, there is nothing to conflict with the BigCommerce for WordPress plugin, which is creating all the ecommerce features for you. It looks like the Thrive themes do have ecommerce features, so it’s not surprising you would run into some conflicts there that cause issues. I would say ANY theme that is otherwise good and that doesn’t have ecommerce built in will work well with this plugin.
Forum: Fixing WordPress
In reply to: How to use own images instead of generated resized versionsIf you are inserting an image into a Page or Post, you have the option to use the full size image. But if you are talking about images that show in various places throughout your theme, then there is a probably code in your theme that is telling WordPress to use a specific image size generated by WordPress. A web developer can edit your theme so that it doesn’t do this, but they’ll have to find and edit the code related to each and every position where images are inserted into your theme.
Forum: Plugins
In reply to: [BigCommerce For WordPress] Uncaught Error: Class ‘AMP_Post_Template’This seems to have been resolved. Did you ever figure out why this was happening?
This could be a challenge with any online platform, because you have to schedule the rentals based on availability. You need to schedule when someone is going to be using your LCD Projectors so that you know whether they are available, or not. Each item in your inventory would need to have its own schedule, and online stores don’t typically do this. It’s more like a service than a product, like a massage therapy session. I’d look into scheduling websites that promote to service-oriented businesses.
Good luck!
Forum: Plugins
In reply to: [BigCommerce For WordPress] InventoryUnfortunately, that variable isn’t available in the product-card.php template. You could build a front-end script that pulls in the inventory values of all the products on the page and then update each card with the “Out of Stock” message as needed.
Forum: Plugins
In reply to: [BigCommerce For WordPress] Check out page is not loadingI’m unable to add an item to my cart on your site. Without an item in the cart, the checkout page just leads me to a “Cart Empty” message. This could be a data sync issue between your site and BigCommerce, so maybe update everything and then run a product sync to see if that helps.
Those instructions are for adding Klaviyo to a BigCommerce “Storefront” (a website built in BigCommerce). You have a WordPress site, so you have to change that script to get the values from your site.
In that script you’ve added to the site, you’ll see things surrounded by double brackets, like this: {{product.id}}
If your site was a BigCommerce Storefront, then those values would automatically be pulled in from the product page. On your site, you’ll need to change the script to pull in these values from your page. There are a couple of ways to approach this.
First, if you are working on a custom theme and inserting this script into a template file, then you can get these values using PHP and insert them into the script.
On the other hand, if you are using a plugin or some other method to get this script added to your pages, then you will need to use javascript and edit the script that you are inserting. You’ll need to make sure the script is in the footer so the page elements will be loaded and then you will write javascript to read these values from the page itself or from data elements and fill them in.
Either way, you’ll probably need a web developer if you don’t have one, but you might be able to pull this off yourself if you’ve got enough time to dig into it. Good luck!
Forum: Plugins
In reply to: [BigCommerce For WordPress] Deactivating the BigCommerce For WordPress PluginDeactivating the plugin doesn’t remove any posts, categories, settings, etc.
If you delete the plugin, the plugin will attempt to delete everything (and succeed if it doesn’t hit a process time limit).
I see this from time to time also. I’ve found that if I visit the wp-login.php page (https://your-domain.com/wp-login.php) and log in there, I reach the admin.