ddmccaleb
Forum Replies Created
-
Forum: Plugins
In reply to: [AddToAny Share Buttons] anchors for Share and FollowIn case anyone else has this same question in the future, I adjusted the code just a little to account for scroll offset due to a top navigation bar on my site. It works well on desktop, but doesn’t quite work right on mobile. Maybe @micropat or someone else could help tweak this a bit further if they feel inclined. Thanks!
add_filter( 'dynamic_sidebar_params', function( $params ) { // If the widget is named "AddToAny Follow" if ( isset( $params[0]['widget_name'] ) && 'AddToAny Follow' === $params[0]['widget_name'] ) { // Prepend an anchor to the widget $params[0]['before_widget'] = '<a id="follow" style="padding-top: 80px;margin-top: -80px"><br></a>'; // Just once to avoid potential duplicate anchor IDs on the same page return $params; } return $params; } );
Forum: Plugins
In reply to: [AddToAny Share Buttons] anchors for Share and FollowI figured out how to force the image to display on mobile! Instead of using an image block, I used a paragraph block and inserted an inline image. Now the image displays on mobile and desktop. However, now I need to increase the standard height of the popup on mobile. I will open another topic for that.
@rayeason I just wanted to tag you on this one since you had the same issue on a separate thread.
Forum: Themes and Templates
In reply to: [Neve] Lists block no bullets no indentActually, take two… the bullets appear to be working on https://esvamarket.com/privacy-policy/, but not on other pages such as https://esvamarket.com/online-vendors/. On that second page everything under the heading Product and Vendor Eligibility is bulleted. Both times the bulleted lists utilize a Gutenberg list block and both are formatted the same. I’ve purged the site cache as well as my browser’s cache. Any thoughts on why these bullets aren’t displaying?
Thanks again for all your help!Forum: Themes and Templates
In reply to: [Neve] Lists block no bullets no indentThank you. Yes, it does appear to be working now. I truly appreciate it. Thanks!
Tasfia,
Thank you for your reply. However, I believe you may have misunderstood. My inquiry is not about the Dokan Geolocation module. My inquiry is in regards to showing a store map in the store sidebar which is a Dokan lite (free) feature. In the free version of Dokan if you click on Settings, then click Appearance, the first item is the menu is a checkbox for “Show Map on Store Page. Enable Map of the Store Location in the store sidebar.” Even with this checkbox active and all information entered as previously mentioned, no map is viewable in the store sidebar.
I figured it out! The map has to be set up by the vendor from the vendor dashboard. The marketplace administrator is not able to set this up on behalf of a vendor. You can close out this ticket. Thank you!
Forum: Themes and Templates
In reply to: [Neve] Change background color for all store pagesThank you!
I figured it out! It is a conflict with the SiteGround Optimizer plugin. This is an optimization plugin provided by my host. When that plugin is deactivated, everything works fine. I hope this helps others in the future. Thanks!
Jahidul,
Thank you for clarifying this topic is regarding the woocommerce breadcrumbs. With that help, I was able to find guidance at https://woocommerce.com/document/customise-the-woocommerce-breadcrumb/ and made adjustments sufficient for my current purposes. Thanks again!
Forum: Plugins
In reply to: [a3 Lazy Load] Some images do not load in horizontal review scrollClosing this thread. I figured out this particular issue, though I now found another. But this topic is closed. The solution was that I needed to purge all caches from W3 Total Cache in order for the settings in A3 Lazy Load to be visible. Once I excluded the appropriate image class, the review slider images worked well. I’ll open another thread for the other topic I discovered.
Forum: Plugins
In reply to: [Search Inside] Input Field Too Large – extends beyond input form.Marking as Resolved
Forum: Plugins
In reply to: [Search Inside] Input Field Too Large – extends beyond input form.I think I just figured out how to fix this issue. I did a little custom CSS and changed
#wpsi-search-input {
height: 82%;
}to the following:
#wpsi-search-input {
height: 50%;
}That did the trick. You can close this topic out. Many thanks!
Forum: Plugins
In reply to: [PDF Image Generator] Updated WordPress, plugin no longer workingMy host suspects the error goes hand-in-hand with a bug he’s found in WordPress that is PHP 7 related. He has opened a ticket with WordPress TRAC at https://core.trac.www.ads-software.com/ticket/43310
Forum: Fixing WordPress
In reply to: Add margin on shop page woocommerceI had the same issue with Woocommerce on my site – no margins. Your trick worked great! Thank you faabiian3 for taking the time to post it!