Vagelis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: images not loading on any browserHello, it looks like you use Jetpack’s photon module.
You can disable it to serve local files (this should fix your problem).https://jetpack.com/support/image-cdn/
(i would try to disable and re-enable as it’s a great image CDN and its free)
Forum: Fixing WordPress
In reply to: Cant Login To WordPressHello since you have access to CPanel you can easily change your password using phpMyAdmin.
Take a look at this one.
https://codex.wordpress.org/Resetting_Your_Password#Through_phpMyAdminForum: Plugins
In reply to: [Related Products for WooCommerce] Previous/Next buttons not workingHello, thanks for reaching out.
It looks like the theme you use (Electro) is forcing a couple carousel rules.
In example the dot navigation on the left side of the slider, quickest fix will be to simply hide the next prev buttons and keep the dot navigation this way the plugin will blend better with your theme (as theme uses dot navigation for sliders) if you don’t want to do that i will be happy to debug it and come back to you in a couple days.Thanks.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Title misalignedHello there, try this and let me know
h2.woorelated-title { max-width: 1065px; margin: 0 auto; }Forum: Reviews
In reply to: [Related Products for WooCommerce] Works nice for meThank you for adding a review, enjoy!
Hello again, i can verify this is not a plugin conflict/issue but a CSS issue.
Bridge theme use.owl-carousel { display: none; }Because of that the slider is not getting displayed.
In order to get the slider back, you can use the CSS below.#woorelatedproducts.owl-carousel { display:block; }This will not effect the theme just the plugin’s slider.
Hello there, thanks for the info.
I will check and get back to you ( i will need a couple days )Thanks.
No problem
Well… I could push a small update but not before 15-20 of June as I am swamped atm.
Hello there, that’s not possible with current version of the plugin.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Replace “next” and “Previous” by arrowsHello Pascal, glad you like the plugin 🙂
You can use the CSS below to edit the text
a.wprr.btn.next { visibility: hidden; } a.wprr.btn.next:before { content: 'Précédent'; visibility: visible; } a.wprr.btn.prev { visibility: hidden; } a.wprr.btn.prev:after { content: 'Suivant'; visibility: visible; }Forum: Plugins
In reply to: [Related Products for WooCommerce] Style image sizeMorning, I can see it now.
you can use something like that
.woo-related-products-container img { min-height: 260px; }The best possible solution would be to regenerate your thumbnails using bigger image dimensions or use bigger images but the rule above will fix your problem.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Style image sizeIf you set height and width all images should be the same (may look weird but will be the same) if it doesn’t work try to use !important.
If you give me your website URL I can have a look.
Forum: Plugins
In reply to: [Related Products for WooCommerce] Style image sizeHello,
you can change shortcode’s image size like this.woo-related-products-container.woo-related-shortcode img { /* you can apply any rule you like here */ width: 60%; }Forum: Plugins
In reply to: [Related Products for WooCommerce] Amount of displayed itemsGood job!