PWR Plugins
Forum Replies Created
-
Hello Susan,
Our plugin (Powerfolio) is not using Awesome fonts. Could you please send us more details about this issue? Maybe it’s related to the main Elementor plugin.
Hello @elle981,
Could you please check if you have any JS error in your browser console? This is probably related to this.
Please also check if you are using the latest version of the plugin (we fixed some issues recently).
Hello @maxiec ,
The PRO version offers the possibility of having up to 3 columns in mobile mode.
Forum: Plugins
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] ExcerptHello Patrick,
Could you please send us a screenshot of what you need? I’ll add it to our feature requests list.
Hi there,
At the moment it’s not possible (the titles are only displayed when we hover the image). But we are planning to implement this feature in a next update.
Hi there,
This can be done using CSS. You can add this snippet to appearance > Customize > Additional CSS:
.sl-wrapper .sl-image .sl-caption { text-align: center !important; }Please let us know if it works.
Hello @mikemobley2002 ,
In the latest update (version 2.3) we added a “switch” to the Item title and Item category (PRO version only). You can use this switch to hide the title or the category on the portfolio items.
Could you please let us know if it works for you?
Forum: Plugins
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] URL slug of PortfolioHello @renik ,
In the update today (version 2.3), we added the
elpt_portfolio_cpt_slug_rewritefor the portfolio post type slug.So, you can add something this code snippet to the functions.php file, then re-save your permalinks, and this will be kept after future Powerfolio updates:
// Powerfolio plugin: Modify CPT slug for the "elemenfolio" post type function powerfolio_modify_portfolio_cpt_slug( $slug ) { $slug = 'my-custom-slug'; return $slug; } add_filter( 'elpt_portfolio_cpt_slug_rewrite', 'powerfolio_modify_portfolio_cpt_slug', 10);PS: modify the ‘my-custom-slug’ to the slug you need.
Please let us know if it worked.
Forum: Plugins
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] Link to external URLHello @hpalli ,
In this case, you can use the Image Gallery(Powerfolio) widget to create a gallery with custom images, and then select a custom link for each image. This feature is available only in the PRO version.
Hello @burypetr,
Unfortunately we don’t have this feature at the moment. You can use the Powerfolio widget to display posts from the portfolio post type (or any other post type), or to create image galleries with custom links.
You can create a gallery to display your products, but it’s not possible to list product variations or attributes using it.
Hello @burypetr ,
We released a new version today (2.2.1) where now it’s possible to select more than 1 category on the “display specific categories” mode.
However, it’s only available in the PRO version with the Powerfolio Elementor widget (not in the shortcode mode).
Hello @robinb88 ,
Please try with the following code instead:
<?php previous_post_link('%link', '<< Previous Post', TRUE , '', 'elemenfoliocategory'); ?>You can check more details about this function here: https://developer.ww.wp.xz.cn/reference/functions/previous_post_link/
Please let us know if it worked.
Forum: Plugins
In reply to: [PowerFolio - Portfolio & Image Gallery for Elementor] speed css etc.Hi there,
This plugin adds only a few JS scripts tot eh website, e.g.
– jQuery Isotope
– jQuery Simple LightboxThey are very lightweight and should not impact website performance.
In the latest version, we also added a option to completely disable the simple lightbox scripts. For this you can add the following code to your functions.php file:
// Disable lightbox function elpt_support_disable_lightbox( $value ) { $value = false; return $value; } add_filter( 'elpt-enable-simple-lightbox', 'elpt_support_disable_lightbox' );`
- This reply was modified 3 years, 9 months ago by PWR Plugins.
Hi there,
I think it’s because the portfolio post type doe snot have a archive.
Pleae try the following:
– Open the wp-content\plugins\portfolio-elementor\classes\powerfolio_post_types.php file
– Replace the following line (51):
'has_archive' => false,
With
'has_archive' => true,Please let us know if it works.
Hi there,
Unfortunately at the moment it’s not possible to show only a specific category on the first access.
I added this to our feature request list.
Thanks!