PWR Plugins
Forum Replies Created
-
Hello @bombastik , any feedback?
I checked the link of your page again (https://mathiasandren.se/offentlig-portfolio/) and found that some items are working as expected, but others have a 404 error.
Please try the following:
– Go to Portfolio > All posts and check if the portfolio items are there (maybe they are moved to trash, or set as draft, so you will need to restore it)
– Go to Settings > Permalinks and re-save the permalink structurePlease let us know if it works.
Hello @balram19 ,
It’s possible to rollback to the previous version of any WordPress plugin or theme with this plugin: https://www.ads-software.com/plugins/wp-rollback/- however, this is not recommended for any product, because old versions may have problems and security flaws. So you need to do this at your own risk.
May I ask you, why would you want to use an older version?
Hello @balram19 ,
Thanks for reporting. We released a new version today (3.0.2) with a fix for this error and warning. Could you please update and lconfirm if it fixed the issue for you?
Forum: Plugins
In reply to: [Portfolio for Elementor & Image Gallery | PowerFolio] Undefined array key ??Hello @paul-t20 ,
We released a new version today with the fix for these PHP warnings. Could you please update to the last version and check if it works for you?
Hello @conquistainternet , sorry for the delay.
We released a major update yesterday. Could you please check if this issue is fixed with the new version?
PS: We also released a new mwjor version eysterday. Pelase check if the issue persist with the new version.
Hello @bombastik, sorry for the delay.
We released a new major version yesterday. Could you please check if the issue still happens with the new version?
If so, could you please enable wp_debug and check if there are any errors displayued? If so, please send us a screenshot: https://www.ads-software.com/documentation/article/debugging-in-wordpress/Hello @vinod99 ,
This is weird, as usually this kind of error is related to the theme.
Could you please enable wp_debug and check if it adds any erros to the debug log? If so, please send it to us: https://www.ads-software.com/documentation/article/debugging-in-wordpress/
Hello @momo-fr,
What is the link of the portfolio page?
Does it display any error message? If so, could you please send us a screenshot?
Hello @aamiranwar33 ,
This seems to be a issue with the theme (as it should use the the_content function). Have you checked with the support from WPAstra?
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: [Portfolio for Elementor & Image Gallery | PowerFolio] 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.