PWR Plugins
Forum Replies Created
-
Hello @altairfigueira ,
This will require some custom coding, which unfortunately it’s out of our support scope.
I found the following tutorial: https://wisdmlabs.com/blog/add-taxonomy-term-custom-post-permalinks-wordpress/
As we have the powerfolio_modify_portfolio_cpt_slug and elpt_elemenfoliocategory_slug_rewrite filters available (to modify the slugs) I tried it with the following code (added to my functions.php file):// Powerfolio plugin: Modify CPT slug for the "elemenfolio" post type function powerfolio_modify_portfolio_cpt_slug( $slug ) { $slug = 'portfolio/%portfoliocategory%' ; return $slug; } add_filter( 'elpt_portfolio_cpt_slug_rewrite', 'powerfolio_modify_portfolio_cpt_slug', 10); add_filter('post_type_link', 'portfoliocategory_permalink_structure', 10, 4); function portfoliocategory_permalink_structure($post_link, $post) { if (false !== strpos($post_link, '%portfoliocategory%')) { $portfoliocategory_type_term = get_the_terms($post->ID, 'elemenfoliocategory'); if (!empty($portfoliocategory_type_term) && is_array($portfoliocategory_type_term)) { $check = array_pop($portfoliocategory_type_term)->slug; $post_link = str_replace('%portfoliocategory%', $check, $post_link); } else { $post_link = str_replace('%portfoliocategory%', 'uncategorized', $post_link); } } return $post_link; } // Powerfolio plugin: Modify taxonomy slug for the "portfoliotaxonomy" post type function powerfolio_modify_portfoliocategory_tax_slug( $slug ) { $slug = 'portfolio'; return $slug; } add_filter( 'elpt_elemenfoliocategory_slug_rewrite', 'powerfolio_modify_portfoliocategory_tax_slug', 10);But it not worked as expected. I’m just sharing here so maybe it’s useful to you.
The post type is created on wp-content\plugins\portfolio-elementor\classes\powerfolio_post_types.php
Forum: Plugins
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] Pre Pro Sales QuestionHello @dccreatives!
Unfortunately we don’t have this feature.
With the “Image Gallery” widget, it’s possible to display title and a very short description. But It’s not possible to add share links and the lightbox only displays the title.
I added your suggestion to our feature requests list.
Hello @johnmecham
You can use the following option (Widget > Hover effect settings > Each project links to) option:

The UX is a bit confusing, but we would like to improve that.
Please let us know if it works.
Hello @vertizio ,
Sorry for the delay, we just replied the email. Please check your inbox.
Please let us know if it works.
Hello @mikemobley2002 , sorry for the delay.
Instead of working on a custom CSS snippet, we released a new version today (2.3.4) where we added a 2 new hover styles today (Content Visible 1 and 2). They are available in the Widget options > Hover Setings > Hover Style and we added it based on your suggestion.
Could you pelase test and check if it works for you?
PS: Please remove the previous CSS snippet.
Forum: Plugins
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] Button ColourHello @andrewianlamb,
Please add the following snippet to appearance > customize > additional CSS. It should fix the issue:
.elpt-portfolio .elpt-portfolio-filter .portfolio-filter-item { background-color: #59694D; }Forum: Plugins
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] Button ColourHi there,
The customization options are available inside the “style” tab of the widget options in elementor:

If you are not using Elementor, maybe it’s better to create a custom CSS to change the color, then add the snippet to Appearance > Customize > Additional CSS. If that’s the case, please send us a link to your website and the color you need. We can generate a CSS snippet for you.
Forum: Plugins
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] Polylang and portfolioHello @noorasvard ,
Is the portfolio post type set as translatable, and the posts created in both languages? Or all posts are being created on the same language?
Forum: Plugins
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] Button ColourHi there,
It should be possible to set the filter color in the widget settings of the powerfolio widget. Could you please check if it works for you?
Hi there,
I’m glad that the issue is resolved 🙂
Hi there, sorry for the delay.
This will require some CSS customization. The following CSS will fix these issues for you.
.page-id-334 .elpt-portfolio-content .portfolio-item-infos { bottom: 20px !important; top: auto !important; } .page-id-334 .elpt-portfolio-content .portfolio-item-infos-wrapper { background: rgba(0, 0, 0, 0.5) !important; }You can add it to Appearance > Customize > Additional CSS.
PS: It will overwrite the settings from the plugin and it will work only in this specific page.
Hi there,
Please try the following steps to disable the Elementor default lightbox: https://elementor.com/help/lightbox/ – after that it should open only the Powerfolio lightbox.
About the parameter, unfortunately we don’t have this feature at the moment.
Hi there,
Could you please send us the link of the page with the issue? We will take a look.
Hello,
This can be fixed with the following CSS. You can add it to appearance > customize > additional CSS:
.elpt-portfolio-content .portfolio-item-wrapper img {display: block;}Hello @ruby314722,
We offer 3 modes for the main portfolio grid:
– Open the image with our Custom Lightbox
– Open the image using the Elementor lightbox
– Open the portfolio single pageCould you please check if using the Elementor Lightbox option fixes the issue for you?
If the issue persist, could you please let us know which mode are you using?