Vagelis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website Broken after Http to httpsIn that case, you should contact your host. I am sure they will edit it for you and solve your problem.
Forum: Fixing WordPress
In reply to: Were do I find wp-config.php ?Hey, you need to have access to your hosting account to be able to edit wp-config.php.
If you have a control panel get into it and find file manager, then look for folders with names like public_html, www or your domain name.
In there you should be able to find your wp-config.php file (in the root of your WordPress installation).When you find the file you ‘ll need to add
define('WP_HOME','http://Fileport.be'); define('WP_SITEURL','http://Fileport.be');just above the “That’s all stop editing line”
Another way to update your site URL is by editing the DB directly.
You can get more info here https://codex.wordpress.org/Changing_The_Site_URL#Changing_the_URL_directly_in_the_databaseForum: Fixing WordPress
In reply to: Website Broken after Http to httpsHey, it looks like you don’t have TLS on your hosting account.
“Get back to HTTP” until you resolve this with your host.To do so you add this to your wp-config.php (above “/* That’s all, stop editing! Happy blogging. */” )
define('WP_HOME','http://dba-gmbh.de/'); define('WP_SITEURL','http://dba-gmbh.de/');Hello @shwesharan did you transfer your WordPress data before NS switch?
No sorry, I have no idea, it may be a Theme feature (sounds like) or another plugin. You can see all the installed plugins from your dashboard.
- This reply was modified 7 years, 9 months ago by Vagelis.
Hello there, your website doesn’t use Woo Related Products plugin
Forum: Plugins
In reply to: [Related Products for WooCommerce] Center RowI see there is a 5columns class on the UL, I am guessing that you need 4 related products is that correct?
Try this one
jQuery(document).ready(function(){ jQuery('.woo-related-products-container').addClass('container'); jQuery('.woo-related-products-container ul').removeClass('shop-5column').addClass('shop-4column'); });Forum: Plugins
In reply to: [Related Products for WooCommerce] Center RowOk the easiest way to fix this is by using JS
jQuery(document).ready(function(){ jQuery('.woo-related-products-container').addClass('container'); });if you don’t want to use JS you can simply add .woo-related-products-container to your .container rules (don’t forget media queries)
Forum: Plugins
In reply to: [Related Products for WooCommerce] Center RowYep, looks great now.
Let me check that div for you..Forum: Plugins
In reply to: [Related Products for WooCommerce] Center RowThis is what i get..
https://drive.google.com/file/d/1gqkG0L-EKPhyqF7-8OCR8xBHIBGfFisX/view?usp=drive_web
Forum: Plugins
In reply to: [Related Products for WooCommerce] Center RowHello there. I checked the link you sent but the page is broken (minification errors). Anyway you can position the products using CSS, the plugin offers classes to do so.
I can help you more if you like once you solve the minification errors.
Thanks.Forum: Plugins
In reply to: [Related Products for WooCommerce] Related Products regarding subcategoryHello there, you mean you need to exclude parent category?
Forum: Plugins
In reply to: [Related Products for WooCommerce] Not showing on Shop PageRemove the shortcode and use the action below.
add_action( 'woocommerce_after_shop_loop', 'wrprrdisplay', 10 );NOTE:
If you are not familiar with theme or PHP editing do not try this one.
You should add that into your child theme’s function file.Also try to be more “friendly”
Forum: Plugins
In reply to: [Related Products for WooCommerce] Not showing on Shop PageHello there, all you need to do is to remove the [woo-related] shortcode from your shop page.there is no use for related products on the main shop page. I checked your product page and I see you get related products as expected.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Not Showing the correct number of productsGreat, thanks again.