smallwebsolutions
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Receptar] Receptar 2.0Thank you. Appreciated!
Any chance for help on this? I think I can work around this be deleting all events prior to the current date, but even if I do so, I won’t be able to update TEC going forward if the slider disappears when I do.
And it is TEC that is causing the issue. I can create other kinds of sliders that work just fine. But not one using TEC feed.
Thanks.
The slider + TEC worked perfectly together in v5.9+, but the problem I originally laid out in this thread occurred when I updated the db (as required) after upgrading to TEC v6.0. The issue was that the slider was showing expired events going back to the very first created event in the calendar from 2018 in ASC order. We placed the slider in DESC order for the public facing version of the slider, so at least it was showing future events instead of expired events.
I then upgraded to the most recent release, which was supposed to be a fix for this recognized bug, but the slider disappeared altogether. In rolling back to the previous v6.0, the slider reappeared, but again with the expired events.
I tried using the shortcode in a stand alone page in Twenty Nineteen, but encountered the same results – no slider. Here is that page. In the code, you can see that the call for the slider is made with all accompanying code. I have no idea why it is not visible.
https://www.worthlibrary.com/1666634846331/?page_id=9236
Your continued help would be greatly appreciated.
TIA
@abzlevelup or @eeide, any chance for assistance on this issue? Is anyone else reporting the same problem after the db upgrade for v6.+?
Thank you.
I have tested this on a staging site with Theme Twenty-Two and no caching. The slider is still not appearing. I also deactivated all plugins except for TEC and LayerSlider; same results.
If you would like access to the staging site, please let me know and I will create an admin account for you to investigate.
Thank you.
- This reply was modified 2 years, 1 month ago by smallwebsolutions.
Just upgraded and now the slider is not displaying at all. Slider reappeared after rolling back to the previous version of TEC.
- This reply was modified 2 years, 1 month ago by smallwebsolutions.
Forum: Plugins
In reply to: [YITH WooCommerce Gift Cards] Divi + gift cardI’m using Divi for a client’s shop and I was able to work around this problem by using the default Woo product page for our Gift Card (gift-card) product category. It required a good amount of CSS styling to hide the sidebar and trying to get a decent-looking layout, and I’m still not finished with it.
If you’re using the Divi Theme Builder, just exclude your gift card category from your product page layout. Then add the following to your child theme functions.php file in order to style the default Woo product page just for the gift-card category (in case you need to use the default Woo product page for some other reason):
// add taxonomy term to body_class
function woo_custom_taxonomy_in_body_class( $classes ){
if( is_singular( ‘product’ ) )
{
$custom_terms = get_the_terms(0, ‘product_cat’);
if ($custom_terms) {
foreach ($custom_terms as $custom_term) {
$classes[] = ‘product_cat_’ . $custom_term->slug;
}
}
}
return $classes;
}
add_filter( ‘body_class’, ‘woo_custom_taxonomy_in_body_class’ );So, for example, you can use the following in your child style.css file to get rid of the sidebar in the default Woo product page for the gift-card category:
body.product_cat_gift-cards #sidebar {display: none !important;}
These css items may also help, it just depends on your original layout:
body.product_cat_gift-cards #left-area {width: 100% !important;}
body.product_cat_gift-cards div.woocommerce-product-gallery {max-width: 400px;}I’m using a LOT more css to make it look right. It takes some effort, but you end up with a decent enough layout and you can see all of the form details, pricing buttons, etc.
Good luck!
p.s. Make sure you have accurate image category settings for each image you want to use as options.
Forum: Plugins
In reply to: [YITH WooCommerce Gift Cards] HTML/CSS list separator not loading correctlyJose, it looks like you were able to fix your issue. I am having some major layout problems with my installation. Did you make any adjustments? If so, would you be willing to share? Thanks!
Is this a feature of the Pro version only, or can you find this in the non-premium version, too? Thanks.
Thanks @sabinevi. You just saved me probably and hour of work or so in troubleshooting. I hope they get the issue worked out.
Forum: Plugins
In reply to: Google Analyticator error on activationThank you for sharing your solution. I encountered the same issue and your suggested fix worked for me as well. Much appreciated!
Forum: Plugins
In reply to: [Maps Widget for Google Maps] Google maps usage limits?Thanks for the reply, WebFactory. I was able to get this working by following the links/steps/instructions on your plugin settings.
My client had installed this plugin prior to my involvement and I did not realize that the plugin had not been configured correctly to begin with.
I am also experiencing this issue after moving a site to a new domain. Any help would be GREATLY appreciated!
Forum: Plugins
In reply to: [DM Confirm Email] Users registering with and without confirmationSame problem here. I also installed this on a WordPress site and the account confirmation function does not seem to be making a difference. Is it possible this function needs to be revisited?
“DM Confirm Email will send a confirmation email and the only time it will actually “create” the account for the user if the email address is confirmed.”
The idea behind this plugin is quite fantastic, but the results are not what I expected. Alternately, would it be possible for you to include a column in the users list that shows whether or not the confirmation link has been clicked or not for each user? At least that way we could weed out the spam.
Any chance you could check into this as the author, donmhico?
Thanks.
Jean, are you saying that no PHP update is required for the most recent update to your plugin?
Thanks,
Jackie