auxjoel
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Top Level Nav items don’t click on iOSYes here is a link to the site:
yeti.net.au/new/
Forum: Plugins
In reply to: [Brands for WooCommerce] imgh Short Code is not affecting the Brand Imageok thank you
Forum: Plugins
In reply to: [Brands for WooCommerce] imgh Short Code is not affecting the Brand ImageHello @dholovnia img_height does not work, and img_height_units adds to the default figure but does not replace it.
For example, I tried:
img_height_units='555px'
and instead of replacing the default 64px, it turned it into:
height:64555px;Forum: Plugins
In reply to: [Brands for WooCommerce] imgh Short Code is not affecting the Brand ImageAnd what can I do to remove the height property completely? Is there a hook I could include in “functions.php” to remove the Height style ?
Hello, @dholovnia
Just wondering if you had any tips on how to use a function hook to remove the height:64px style from the Brand Image?
I want to remove it completely, as opposed to replacing it with something else.Hi @dholovnia yes I reverted to just using the Brand Position option on the plugins setttings page in order to move forward.
However I would like to take more control over where that Brand Title sits.
What could I include in a functions hook to render that?@dholovnia I used your above method within my functions.php to insert the Brand Name into a specific position on my Product detail pages. The Brand Name is displaying correctly:
However, the link on the name does not work.
Here is my code:remove_action('woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 ); function my_custom_action() { echo do_shortcode('[product_brands_info type="name, link"]'); } add_action( 'woocommerce_single_product_summary', 'my_custom_action', 15 );
Can you tell what I would need to adjust to make the Link on the Brand Name work correctly?
Forum: Plugins
In reply to: [Brands for WooCommerce] Brand name not showing single product page@kirstinv I am looking to display the Brand Name on a specific position of the product detail page. What did you use to achieve this?
Hello,
it’s via shortcode, displaying on this home page:
https://tempwebdev.com/
(see the row of Brands sitting directly below the “Our Artists” Heading)
I would like to remove the “Height” completely from the image element, so I have better responsive control of it in my own CSS.Forum: Fixing WordPress
In reply to: When users click browser’s back button, site loads empty white pagesI ended up receiving a delayed response from the theme creator just then, they replied:
I've made some tests, and I found a conflict between a WooCommerce plugin and the page loading feature of the site. For now, please disable the page loading on the "Appearance > Customize > Site identity > Loading", and the back button cache should work.
I tested that and it has solved the problem.
- This reply was modified 2 years, 10 months ago by auxjoel.
Forum: Fixing WordPress
In reply to: When users click browser’s back button, site loads empty white pages@bizanimesh The theme creator doesn’t appear to be replying to support requests anymore.
If I am unable to communicate with them, is there any other way I can fix it?Forum: Fixing WordPress
In reply to: When users click browser’s back button, site loads empty white pages@bizanimesh Thank you for your reply. I put the question to the Theme builder a few weeks ago and he said “it probably isn’t the theme’s fault” and offered no other assistance.
I will try contacting them again about this.EDIT: I notice that if no Products are applied to the Brand,
then the Custom Fields display without any issue.
But as soon as I apply products to the brand (which causes the relevant Products to be listed in summary form on the Brand page), then the Custom Fields for the Brand disappear.
Does anyone now how I can retain my Advanced Custom Fields display on the frontend, whilst also having product lists display on the page?p.s. I have also installed the plugin “Advanced Custom Fields”
https://www.ads-software.com/plugins/advanced-custom-fields/
Which has allowed me to add 2 x new fields to the Brands (as seen in my above reply)
I am able to add PDF links in a new Link field, and Rich Text into a new WYSIWYG Editor field.
I am now trying to understsand how I can make those new fields appear on the page:
https://tempwebdev.com/?berocket_brand=melanie-hava
The fields have content in them, in the backend editor, but they do not display on the page:
https://tempwebdev.com/?berocket_brand=melanie-havaI believe I have to write some php to make them display? Can anyone tell me exactly what I’d need to do?
Hello Kartik,
on this page:
https://tempwebdev.com/?berocket_brand=melanie-hava
you can see this text:
https://www.dropbox.com/s/fgky9xr4cpemu62/Screen%20Shot%202022-04-27%20at%209.50.46%20am.png?dl=0which comes from this field in the Brand ‘description’ field in the Product editing area in Dashboard back-end:
https://www.dropbox.com/s/0byeevgaux4qtf9/Screen%20Shot%202022-04-27%20at%209.51.48%20am.png?dl=0I would like to turn that field into a Rich Text field so that I could include links to PDFs, H2s, italic, etc.
How would I do that?
I would like to do the same thing to the Product Categories ‘description’ field too:
https://www.dropbox.com/s/agx8rkursyqtjo3/Screen%20Shot%202022-04-27%20at%209.55.09%20am.png?dl=0how can I do that?