PWR Plugins
Forum Replies Created
-
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: [Portfolio for Elementor & Image Gallery | PowerFolio] URL slug of PortfolioHello @renik ,
In the update today (version 2.3), we added the
elpt_portfolio_cpt_slug_rewrite
for 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: [Portfolio for Elementor & Image Gallery | PowerFolio] 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.www.ads-software.com/reference/functions/previous_post_link/
Please let us know if it worked.
Forum: Plugins
In reply to: [Portfolio for Elementor & Image Gallery | PowerFolio] 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 2 years, 2 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!
Hi there,
The issue happens in the english version, right?
Please try to edit the transleted post using the manual/WordPress editor (not an translation editor) and check if the post is assigned to the english category (e.g. to the “Exhibitions” category). If not, please assign it and save.
Hello,
The portfolo post type (elemenfolio) should work like any other post type. So you should be able to enable the “edit with elementor” option inside elementor settings.
To enable comments, as this feature is not currently supported, you will need to edit the plugin code:
– Open the wp-content\plugins\portfolio-elementor\classes\powerfolio_post_types.php file
– Replace the line 55:
'supports' => array('title','editor', 'thumbnail')
With this:
'supports' => array('title','editor', 'thumbnail', 'comments')
About the social cards, you may need to use a plugin that adds this feature to custom post types.
Hello,
There is a option on WPML > Settings to set the portfolio category taxonomy as translatable. After that, you can translate it like other translatable taxonomies.
Please check this link: https://wpml.org/documentation/getting-started-guide/translating-post-categories-and-custom-taxonomies
Hello @irfanmalik,
You want to keep the item title always displayed on mobile. Is that correct?
If so, unfortunately this is not possible at the moment. But I added it to our feature request list, to implement it in the future.
Forum: Plugins
In reply to: [Portfolio for Elementor & Image Gallery | PowerFolio] thumbnails glitchHello @kalapishev ??
Could you please send us more details about the issue? I checked your screenshot and the link but didn’t find it.