caticc
Forum Replies Created
-
Hi! I would like to know if you have already implemented the integration of PODS or ACF with your dynamic tags? It may be too soon but I really hope you are working on that, thanks!!
Does it support another custom post field plugin, like PODS?
Ok thanks! It would be really useful
Forum: Plugins
In reply to: [Polylang] Unable to add languagesSolved!
I delete the plugin once again and reinstalled it and this time it worked. Im not sure why it didn’t work the first time, probably because I missed one step or did something wrong.What I did is:
-Add define( ‘PLL_REMOVE_ALL_DATA’, true ); at wp-config.php file. on its own line above the /* That’s all, stop editing! Happy publishing. */ line.
-Then desactivate and delete Polylang plugin
-Then delete the row define( ‘PLL_REMOVE_ALL_DATA’, true ); at wp-config.php file.
-Finally I installed and activated he plugin once again.Hi! Im having the same issue.
I’ve solved it by adding this CSS to the header:.ekit-template-content-header {
position: fixed !important;
left: 0 !important;
right: 0 !important;
top: 0 !important;
z-index: 9999;
}But I don’t know what causes that bug yet.
Let us know!
Thanks!Ok, thanks!
Is there something I can do in the meantime?Thanks a lot, it worked!
I found a solution! not sure if many people will have this need, but, here it goes:
I opened this file: excerpt.php (wp-content/plugins/visual-portfolio/templates/items-list/items-parts/excerpt.php)
And I replaced this:
<div class=”vp-portfolio__item-meta-excerpt”>
<div>
<?php echo wp_kses_post( $args[‘excerpt’] ); ?>
</div>
</div>with this code:
<div class=”vp-portfolio__item-meta-excerpt”>
<div>
<?php if ( has_excerpt() ) { the_excerpt(); } else { echo ”; } ?>
</div>
</div>This worked for me.
The only problem is that I’ve tried to do this in my child theme with no results: I recreated this file in my child theme (by creating every folder and copying the excerp.php file)
public_html/wp-content/themes/my-child-theme/wp-content/plugins/visual-portfolio/templates/items-list/items-parts/excerpt.php
There i did the same replacement, but it didn’t work. If anyone knows why, it would help.Thanks!