SolutionsDEV
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Contact Form Not Being CenteredIt is at https://ardenhealth.com/wholesale/, if you notice the text might not be perfectly in the middle, but the form should be in the middle of the page, the title clearly shows that it is not in the middle.
Thanks,
Forum: Plugins
In reply to: [WooCommerce] Main Price ChangeThank a lot, I will review.
Forum: Plugins
In reply to: [WooCommerce] Main Price ChangeHello @riaanknoetze ,
Thanks for your help.
Originally, as you know, the price is showing a range for variable products; previously, I was asked to show the minimum price for all products which I used a code almost similar to the one your provided, when I used yours, it conflicted with the previous code which resulted that other products does not show the main price.
To solve this, I added a line from the previous code after “$price = ”;” and within the else statement, the line
$price .= wc_price($product->get_price());
This made it work as needed, all products show the minimum price while the selected product only shows the maximum.
Thanks a lot for your help
Forum: Plugins
In reply to: [WooCommerce] Main Price ChangeHello @riaanknoetze ,
I used a snippet to show the max price of the variation product:
add_filter(‘woocommerce_variable_price_html’, ‘custom_variation_price’, 10, 2);
function custom_variation_price( $price, $product ) {
// Get the highest priced variation
$highest_price = $product->get_variation_price(‘max’);if ($highest_price > 0) {
// Display the highest price
$price = wc_price($highest_price);
}return $price;
}This worked totally fine, but for all products, I need to do this for a single product. I tried to add ->get_id(288), but did not work for me, 288 is the product id.
Would you help me in this?
Thanks a lot,
Forum: Plugins
In reply to: [WooCommerce] Main Price ChangeThanks, I am contacting the theme support and see what they reply.
Forum: Plugins
In reply to: [WooCommerce] Main Price Change@riaanknoetze Thanks again for your reply.
https://ardenhealth.com/product/permea-plus-100-virgin-argan-oil/
There are 2 variants, one priced 22 the other priced 35, what shows below the title of the product is the 22, I want to other price of 100 mm bottle to appear instead which is 35.
I hope this is clear enough.
Thanks,
Forum: Plugins
In reply to: [WooCommerce] Main Price Change@riaanknoetze Thanks for your reply.
The variation order does work fine, I can control it and it reflects to the front end. My question is to change the default price which shows the minimum which is variant A, I need the price of variant B which is more priced, referring to my previous message.
So, it is about the price only.
Hello @pulak00,
Thanks for your message. Upon inspecting the page, it does use h2, which is manually set using CSS, woocommerce single product title are using it and I increased the size of h2, since the carousel is using the same h2, the text has large size.
On the other hand, in the product titles I am using <br> to control the flow of long titles, when inspected, this prevents the image from showing, I removed one from Actrim2 title to allow the image to show, so you can check it. The <br> tag is also an important part of the titles that we cannot remove.
Please check these 2 points at: https://ardenhealth.com/development/slider-temp/
Thanks and regards,
Forum: Plugins
In reply to: [Carousel Slider] An Issue with HTML Product Titles & Other IssuesAny updates on this?
Forum: Plugins
In reply to: [Backuply - Backup, Restore, Migrate and Clone] Problem in Restoring DatabaseThank you.
Forum: Plugins
In reply to: [Carousel Slider] Rating Stars are not STARSHello,
Recent updates did not fix this. Is there any solution?
Thanks,
Forum: Plugins
In reply to: [Backuply - Backup, Restore, Migrate and Clone] Problem in Restoring DatabaseHello @backuply,
Thanks for your support.
I do not know what has changed, but I have retested the plugin lately and switched off all selections and the result was successful, so, yes, I can confirm now that the compatibility is working fine; I am taking about the import of the database manually.
I also have tested the restore feature of Backuply plugin and it working perfectly as it should, one little thing is that it needed to synch with gDrive after restoring.
So, the conclusion is that this plugin, Backuply, if well done and recommended.
Thanks again for the good support
Forum: Plugins
In reply to: [Backuply - Backup, Restore, Migrate and Clone] Problem in Restoring DatabaseForum: Plugins
In reply to: [Backuply - Backup, Restore, Migrate and Clone] Problem in Restoring DatabaseHello @backuply,
When the tables are removed, they are removed manually in phpmyadmin. I have tried many times, sometimes after removing the tables and some others without removing tables, all lead to the same errors.
When tried to import tables that were backed up not using backuply, they worked fine. For this my suspension is that the SQL written by backuply is not completely compatible with MySQL queries.
Thanks,