Diego Pereira
Forum Replies Created
-
Hi aspiee,
Thanks for the detailed report β the DevTools/Network checks really help.
Two things to check:
1. “Link To” per image. In the Image Gallery widget, “Link To” is set per image inside the Images list, not globally. Please confirm the failing images have it set to Lightbox (not “None” or empty) β otherwise PowerFolio renders a plain link to the file, which matches what you’re seeing. The PowerFolio lightbox is a free feature, no PRO needed.
2. JS not loading on the live page. Your finding (works in the editor, missing on the published page, no console errors, file not in Network) is the classic signature of a JS optimization/cache plugin (defer, combine, or “delay JS until interaction”) or an Elementor experiment stripping the script. The editor preview bypasses those optimizers, which is why it works there.
Could you try, then hard-reload the live page (Ctrl/Cmd+Shift+R)?
– Temporarily disable any JS defer/delay/combine option in your cache/optimization plugin (WP Rocket, LiteSpeed, Perfmatters, Autoptimize, Asset CleanUp, etc.).
– In Elementor > Settings > Features, set Improved Asset Loading to Inactive and save.
Then view the live page source and search for custom-portfolio-lightbox.js and simple-lightbox.min.js. If they show up now, that confirms the cause.
If it still fails, please reply with: the live page URL, active theme, your active plugins (especially any optimization/cache plugin), and your Elementor version.
Thanks,
DiegoHi @giddyaf ,
I checked the problem again in your website, and it seems to be happening because you’re using vertical videos, while the modal was originally designed for horizontal videos.
That said, the following CSS seems to have solved the problem for me. It increases the height of the video container on mobile, working for both vertical and horizontal videos.
Could you add the following CSS, in the same way, and see if it fixes the problem?
@media (max-width: 768px) {
#elpt-video-container {
height: 75% !important;
}
}Forum: Reviews
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] Awesome!Hi @giddyaf ,
We just replied to your support ticket. Please let us know if it worked.
Hello Arne,
This seems to be something we need to adjust in the plugin’s CSS. I’ve created a ticket so we can implement this fix in the next update.
In the meantime, could you check if the following CSS resolves the issue for you? You can add it in Appearance > Customize > Additional CSS.
@media (max-width: 768px) {
#elpt-video-container {
width: 95% !important;
}
#elpt-video-close {
top: -30px !important;
right: 5px !important;
font-size: 24px !important;
}
}Please let us know if it works.
Thanks,
DiegoHi there,
You are correct — PowerFolio’s portfolio items do not include WordPress Tags by default. The portfolio post type only comes with its own “Portfolio Categories” taxonomy, which works like categories (hierarchical) rather than tags (flat).
However, the good news is that you can easily add WordPress Tags support to your portfolio items by adding a small code snippet to your theme’s functions.php file (or by using a code snippets plugin like “Code Snippets”):
1. Go to your WordPress admin panel
2. Navigate to Appearance > Theme File Editor (or use a code snippets plugin)
3. Add the following code:
function add_tags_to_portfolio() {
register_taxonomy_for_object_type('post_tag', 'elemenfolio');
}
add_action('init', 'add_tags_to_portfolio');
4. Save the file
5. Go to Settings > Permalinks and click "Save Changes" to refresh the permalink structurefAter adding this code, you should see the Tags option appear in your portfolio item editor, and your portfolio items will share the same tags as regular posts. This can help with your SEO since search engines will be able to index your portfolio items with relevant tag-based keywords.
A couple of important notes:
– If you add this code to your theme’s functions.php, keep in mind it will be lost if you update or change your theme. Using a child theme or a code snippets plugin is the safer approach.
– These tags will be the standard WordPress tags (shared with blog posts). If you prefer portfolio-specific tags that are separate from your blog tags, you would need to register a custom non-hierarchical taxonomy instead.
– The Portfolio Categories that already exist in PowerFolio can also be helpful for SEO, so make sure you are using those as well.
Let me know if you need any further help with this.
Best regards,
DiegoHello @blowinsmokeauto ,
Looks like that the problem is not directly related to the Powerfolio plugin, but rather to the theme. It seems to me that it is duplicating the content area of ββthe post.
Are you using the Elementor theme builder? Perhaps the post content widget is duplicated in a single template, or perhaps in another area of the theme builder.
If you are not using a theme builder, please try the following:
– Navigate to the WordPress theme menu
– Activate another theme (e.g twenty-twenty five)
– See if the problem still persists
However, if you are using the Elementor theme builder or something similar, this test may fail
Please let us know if it works.Forum: Plugins
In reply to: [Debug Bar Localization] Fatal error with WordPress 6.5+I created a PR here: https://github.com/jrfnl/debug-bar-localization/pull/28
Forum: Plugins
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] Admin mail is not sentHi there @hecsaber,
Could you please create a ticket in our support forum? I believe this issue requires further investigation.
This is the support forum link: https://wpml.org/forums/forum/english-support/
Thanks!
Hello @sooskriszta, welcome!
Are you using a third-party plugin to add external and affiliate URLs? Could you please give us more details and maybe some screenshots?
Yes, it should be possible to have different URLs for different languages. But we need more details to tell you how to do that.
Forum: Plugins
In reply to: [WPML Multilingual & Multicurrency for WooCommerce] Tags issueHi there @madfcat π welcome!
It’s possible to translate and modify the translation of tags through Woocommerce > Woocommerce Multilingual > Tags
Please check more details on this link: https://wpml.org/documentation/related-projects/woocommerce-multilingual/#translating-product-categories-tags-attributes-and-custom-taxonomies
I tried to reproduce the issue you mentioned (It add’s a “secondlanguage” sufix) and noticed that it only happens when you try to use the same slug from original to the translation, which is expected.
However, I also found a workaround that may be useful to you:
– Go to Products > Tags
– Change the language using the language switcher at the top admin bar
– “Quick edit” the tag
– Remove the language sufix and saveI reocrded the tests and steps here: https://drive.google.com/file/d/1SPHzSMN60sKmF3IImU7CEDTuHvTKwE0P/view
Please let us know if it worked for you.
Forum: Plugins
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] Link to Project PageClosing the ticket for now. Please re-open if needed.
Hello @maroal93,
The portfolio that is on your site is not the same as our plugin, so unfortunately I can not fix it because I am not the developer.
Looking in the code it displays the name “tgx portfolio”. It was generated by some other plugin.
An workaround is to fix this with CSS. Looking in the code I believe the snippet below fix the problem. You can add it in “Appearance β‘ Customize β‘ Additional CSS”.
html body .tgx-portfolio .hover-3 .effect-3 .info { bottom: -260px; }If the problem persists, please contact the plugin developer.
All the best,
Diego- This reply was modified 8 years, 1 month ago by Diego Pereira. Reason: fixed css snnipet
Forum: Reviews
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] Simple and practiceThanks a lot for the feedback @momo-fr!
The code is ready for translation, but I think I forgot to generate the .mo file.
I’ll check and fix it in the next update.
All the best,
DiegoHello @tatjanasolovjova,
This happens because the CSS class system can not start with a number, but a letter. Our plugin converts the category name into a CSS class. In this way Isotope (the jquery plugin we use for the filter) does not recognize the class and ends up not filtering.
We’ll figure out a way to fix this, but a quick (but maybe not elegant) solution would be to put a letter at the beginning of the category name (eg Y 2018 rather than just 2018).
All the best,
DiegoForum: Plugins
In reply to: [Power Ups for Elementor] Post Carousel SizeI will mark this ticket as resolved for now π