whipsterloaded
Forum Replies Created
-
Hi @champsupertramp;
Yes, I’ve set this up and it works great. But this is just to display the custom field on the users profile.
I’m talking about the user permalink base. I’d like to set this to a custom field…Is this possible? Current options are only username; firstname+lastname; or user ID.
See image of setting here:
Thanks for any advice
WHi @champsupertramp,
Please check the images here:
Screenshot of Chrome on Galaxy S21+ Phone:
Screencap of Chrome – in responsive viewport on cpu:
I checked other browsers on cpu in responsive view and the tooltips function correctly.
I checked on safari with IOS phone and the tooltips do not function correctly – just like the first image.
Thanks for taking a look.
Forum: Themes and Templates
In reply to: [OceanWP] Product Sharing SVG bugYou’re absolutely right! You just made me remember I copied to my child theme to try and add ‘LinkedIn’ as a share option…I couldn’t get it to work so I gave up on it but didn’t delete the template.
I just removed the template and all is well again.
Thanks for your help!
Forum: Themes and Templates
In reply to: [OceanWP] Product Sharing SVG bugI am using child theme, have not added the template in my child theme. I can try. Inside the customizer the icons appear fine. What file should I copy to my child theme? I can try that and change the class and see if it works.
Forum: Themes and Templates
In reply to: [OceanWP] Product Sharing SVG bugI have W3Total Cache running, connected to MaxCDN. Purging all caches doesn’t help. Theres also SGOptimizer running too. I purged that as well with no difference.
Forum: Themes and Templates
In reply to: [OceanWP] Off Canvas Filter & Ajax Layered NavThanks for checking. I agree they should have a class for this, odd that it is inline. One thing I noticed though – when the filter is active and those blank spaces are there, if you refresh the page and reopen the canvas, the spaces are gone…
I’ll see what they say and report back.
Forum: Themes and Templates
In reply to: [OceanWP] Off Canvas Filter & Ajax Layered NavOkay great news is the plugin works great with the off-canvas filter. I open the canvas, select my filters, then just click off the canvas and it closes – exactly what I wanted, the products update with Ajax accordingly.
One thing that is odd is that when filtering, if an attribute reaches zero count – it is supposed to hide – one of the settings in the widget. It does hide, but it leaves a gap where the attribute was – the div maintains “display:block”; in-line. I told woocommerce it should change to “display:none”. All it’s doing is removing the ‘a’ tag from the div.
I asked woocommerce just recently about it and they say it is weird, but that they can’t replicate it on their end/their theme etc…
Take it for a test here and see what I mean – I wonder if you have any thoughts…
https://staging1.sentinelsolar.com/products/inverters/?filter_inverter-type=inverter-charger
- This reply was modified 6 years, 11 months ago by whipsterloaded.
Forum: Themes and Templates
In reply to: [OceanWP] Clear Filters with single buttonI’m trying to avoid the use of plugins/extensions. I’ve found a snippet to perform the clear all function, but I need to know where the template is that controls the filter function on the archive page. Can you tell me where it is? I’m looking for the toolbar that shows the off-canvas filter button, the grid/list buttons and the results count. I want to add a button right beside your filter button…
Thanks
Forum: Themes and Templates
In reply to: [OceanWP] Custom fields inside quickviewThanks for the quick response. I agree with you standard content will show, but my custom fields aren’t. I’m sure it’s my code…but not sure. In the link https://staging1.sentinelsolar.com/product-types/inverters/grid-tie-inverter/ you can see on the archive page, quick view shows title, excerpt and meta box inside. But if you go to the single product page for the item, you can see the custom fields for 2 download links – just below the metafields. These fall under the product entry summary with the standard fields, but for some reason they aren’t included in the quickview…
This is my code for the fields:
add_action( 'woocommerce_single_product_summary', 'downloads', 20); function downloads() { global $post; $download1 = get_post_meta($post->ID, 'specsheet', true); $download2 = get_post_meta($post->ID, 'manual', true); echo '<div class="download-block"><div class="download-link">'; echo '<a target="blank" href="' . $download1. '"><i class="fa fa-file-pdf-o"></i> Specsheet</a> <a target="blank" href="' . $download2. '"><i class="fa fa-file-pdf-o"></i> Manual</a>'; echo'</div></div>'; }
Preferably I would injuect he fields above the metabox, but I can’t find the hook/priority combo to do it…so It falls after the summary.
Thanks again for any help.
- This reply was modified 7 years ago by whipsterloaded. Reason: added link to demo page--