Title: SolutionsDEV's Replies | WordPress.org

---

# SolutionsDEV

  [  ](https://wordpress.org/support/users/solutionsdev/)

 *   [Profile](https://wordpress.org/support/users/solutionsdev/)
 *   [Topics Started](https://wordpress.org/support/users/solutionsdev/topics/)
 *   [Replies Created](https://wordpress.org/support/users/solutionsdev/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/solutionsdev/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/solutionsdev/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/solutionsdev/engagements/)
 *   [Favorites](https://wordpress.org/support/users/solutionsdev/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 138 total)

1 [2](https://wordpress.org/support/users/solutionsdev/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/solutionsdev/replies/page/3/?output_format=md)…
[8](https://wordpress.org/support/users/solutionsdev/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/solutionsdev/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/solutionsdev/replies/page/10/?output_format=md)
[→](https://wordpress.org/support/users/solutionsdev/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Dynamic Pricing and Discount Rules for WooCommerce] Reports Charts are Not Showing](https://wordpress.org/support/topic/reports-charts-are-not-showing/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [4 months ago](https://wordpress.org/support/topic/reports-charts-are-not-showing/#post-18808828)
 * Hi,
 * Thanks for your reply, it seems a temporary issue, in fatal-errors there were
   nothing, but after a couple of days reports were working well.
 * Thanks again,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Contact Form Not Being Centered](https://wordpress.org/support/topic/contact-form-not-being-centered/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/contact-form-not-being-centered/#post-18090476)
 * It is at [https://ardenhealth.com/wholesale/](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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Main Price Change](https://wordpress.org/support/topic/main-price-change/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/main-price-change/#post-18018460)
 * Thank a lot, I will review.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Main Price Change](https://wordpress.org/support/topic/main-price-change/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/main-price-change/#post-18017082)
 * Hello [@riaanknoetze](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Main Price Change](https://wordpress.org/support/topic/main-price-change/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/main-price-change/#post-18007465)
 * Hello [@riaanknoetze](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Main Price Change](https://wordpress.org/support/topic/main-price-change/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/main-price-change/#post-18000698)
 * Thanks, I am contacting the theme support and see what they reply.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Main Price Change](https://wordpress.org/support/topic/main-price-change/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/main-price-change/#post-18000533)
 * [@riaanknoetze](https://wordpress.org/support/users/riaanknoetze/) Thanks again
   for your reply.
 * [https://ardenhealth.com/product/permea-plus-100-virgin-argan-oil/](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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Main Price Change](https://wordpress.org/support/topic/main-price-change/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/main-price-change/#post-18000520)
 * [@riaanknoetze](https://wordpress.org/support/users/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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Carousel, Slider, Photo Gallery with Lightbox, Video Slider, by WP Carousel] Title Size & Image Issues of Woo Product Carousel](https://wordpress.org/support/topic/title-size-image-issues-of-woo-product-carousel/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/title-size-image-issues-of-woo-product-carousel/#post-17506951)
 * Hello [@pulak00](https://wordpress.org/support/users/pulak00/),
 * Any news about this?
 * Thanks,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Carousel, Slider, Photo Gallery with Lightbox, Video Slider, by WP Carousel] Title Size & Image Issues of Woo Product Carousel](https://wordpress.org/support/topic/title-size-image-issues-of-woo-product-carousel/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/title-size-image-issues-of-woo-product-carousel/#post-17492706)
 * Hello [@pulak00](https://wordpress.org/support/users/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/](https://ardenhealth.com/development/slider-temp/)
 * Thanks and regards,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Carousel Slider] An Issue with HTML Product Titles & Other Issues](https://wordpress.org/support/topic/an-issue-with-html-product-titles/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/an-issue-with-html-product-titles/#post-17487841)
 * Any updates on this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Backuply - Backup, Restore, Migrate and Clone] Problem in Restoring Database](https://wordpress.org/support/topic/problem-in-restoring-database/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/problem-in-restoring-database/#post-17382344)
 * Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Carousel Slider] Rating Stars are not STARS](https://wordpress.org/support/topic/rating-stars-are-not-stars/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/rating-stars-are-not-stars/#post-17369245)
 * Hello,
 * Recent updates did not fix this. Is there any solution?
 * Thanks,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Backuply - Backup, Restore, Migrate and Clone] Problem in Restoring Database](https://wordpress.org/support/topic/problem-in-restoring-database/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/problem-in-restoring-database/#post-17369159)
 * Hello [@backuply](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Backuply - Backup, Restore, Migrate and Clone] Problem in Restoring Database](https://wordpress.org/support/topic/problem-in-restoring-database/)
 *  Thread Starter [SolutionsDEV](https://wordpress.org/support/users/solutionsdev/)
 * (@solutionsdev)
 * [2 years, 10 months ago](https://wordpress.org/support/topic/problem-in-restoring-database/#post-16956172)
 * Hello [@backuply](https://wordpress.org/support/users/backuply/),
 * It is MySQL 10.6.14-MariaDB-cll-lve.
 * Regards,

Viewing 15 replies - 1 through 15 (of 138 total)

1 [2](https://wordpress.org/support/users/solutionsdev/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/solutionsdev/replies/page/3/?output_format=md)…
[8](https://wordpress.org/support/users/solutionsdev/replies/page/8/?output_format=md)
[9](https://wordpress.org/support/users/solutionsdev/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/solutionsdev/replies/page/10/?output_format=md)
[→](https://wordpress.org/support/users/solutionsdev/replies/page/2/?output_format=md)