webwerk
Forum Replies Created
-
Thanks!
If you do provide an option to support this, pleaselet me know.
It will save me a lot of time and headaches.Best regards
Hi @markzahra
I’m trying to remove the 3 latest news items from showing.
I have these news items showing in 2 separate footer widgets.
Footer widget 1 shows the latest 3 items, and no pagination. No issues here.I would like Footer widget 2 to show the next 3 items (so exclude the 3 most recent ones showing in fwidget1), and pagination (Older posts link). The goal being to eliminate duplication.
Make sense?
Thanks
Forum: Plugins
In reply to: [Portfolio Slideshow] Fix for title, captions and descriptions not appearingUsing this shortcode
[portfolio_slideshow showcaps=true]
but captions not appearing.Added the suggested code to bottom of portfolio-slideshow\src\views\slides.php
Captions still not appearing…
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Disk space requirements?Old server: PHP Version 7.0.29
New server: PHP Version 7.1.17Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Disk space requirements?Using PHP Version 7.1.17 on the new server.
The site files on the old server are approx. 20 GB
All In One Migration generated a 9 GB file to export from the old server.
After uploading the single 9 GB .wpress file to the new server, and using All in one migration to import it, I found an error.log file of 34 GB and almost none of the old server content on the new server.Is All In One Migration not suited for large websites?
Thanks
Did you figure this out?
I’m new to this plugin and have been trying to use it on this test page
https://emilypereira.com/test/On submit, the page reloads and all the form hidden fields and user data is thrown in the URL
Thanks for any suggestions.
Forum: Plugins
In reply to: [Portfolio Slideshow] Captions not appearing@robstapl
Right off, it all looks fine.
Is there a URL where the slideshow is showing?Forum: Plugins
In reply to: [Portfolio Slideshow] Captions not appearing@robstapl
As stated in original post:In portfolio-slideshow/src/resources/public.js function cyclePager() , add this at the end of the function:
$($(‘.slideshow-caption’)[0]).show();
And in function onAfter, add this at the beginning of the function.:
$(‘.slideshow-caption’).hide(); $($(‘.slideshow-caption’)[opts.currSlide]).show();
In portfolio-slideshow/src/views/meta.php,
changing this block of code<?php if ( ‘true’ == $showcaps ) : ?>
<p class=”slideshow-caption”>
<?php echo sanitize_text_field( get_post_meta( $slide[‘image’], ‘_TODO_caption’, true ) ); ?>
</p>
<?php endif; ?>to this
<?php if ( ‘true’ == $showcaps ) : ?>
<p class=”slideshow-caption” style=”display:none; text-align:left”>
<?php echo sanitize_text_field( wp_get_attachment_caption( $slide[‘image’], ‘_TODO_caption’, true ) ); ?>
</p>
<?php endif; ?>From the wp-admin side, to display the caption you need to add the showcaps=true in the shortcode.
Ex. [portfolio_slideshow id=15 showcaps=true]These steps solved the issue for me, not once but on several sites.
Now it is always possible that you can encounter conflicts with other active plugins on your site. In that case, deactivate all your plugins, then activate them one at a time to find the conflict.Good luck!
Forum: Plugins
In reply to: [Portfolio Slideshow] Captions not appearingNot an option to roll back updates.
So I found the two bugs in the php and the javascript.
In wordpress 4.6 and above to get the caption of attachments you need to use wp_get_attachment_caption.
For the javascript bug I checked the old version on how to show the caption but didn’t find it so I implemented my own workaround.
In portfolio-slideshow/src/resources/public.js function cyclePager() I added this:
$($(‘.slideshow-caption’)[0]).show();
at the end of the function. And in function onAfter I added this:
$(‘.slideshow-caption’).hide(); $($(‘.slideshow-caption’)[opts.currSlide]).show();
at the beginning of the function.
On the php side I modified the portfolio-slideshow/src/views/meta.php,
changing this block of code
<?php if ( ‘true’ == $showcaps ) : ?>
<p class=”slideshow-caption”>
<?php echo sanitize_text_field( get_post_meta( $slide[‘image’], ‘_TODO_caption’, true ) ); ?>
</p>
<?php endif; ?>to this
<?php if ( ‘true’ == $showcaps ) : ?>
<p class=”slideshow-caption” style=”display:none; text-align:left”>
<?php echo sanitize_text_field( wp_get_attachment_caption( $slide[‘image’], ‘_TODO_caption’, true ) ); ?>
</p>
<?php endif; ?>From the wp-admin side, to display the caption you just need to add the showcaps=true in the shortcode.
Ex. [portfolio_slideshow id=15 showcaps=true]Hope this helps.
Forum: Plugins
In reply to: [Portfolio Slideshow] Captions not appearing> rolling back plug-ins one by one
as in deactivating all your plugins one by one?
Or installing an older versions of Portfolio Slideshow?
Or installing older versions of your other plugins?Thanks
Forum: Plugins
In reply to: [Portfolio Slideshow] Captions not appearingWas there ever a suggested fix for this issue?
Thanks
Forum: Plugins
In reply to: [WooCommerce] PayPal IPNHi folks
I’m having the same issue, with WC 2.6.4, PHP Version 5.3.8 and ‘PayPal IPN Request Failure’ at
https://xxx.com/wc-api/WC_Gateway_Paypal/Did you come to a solution for this problem?
Thanks
Forum: Plugins
In reply to: [Local Time Clock] Widget not displaying on mobile devicesHaving the same issue.
Seems like clock is always rendering in Flash, not HTML5, so not showing on mobile device.
Did you ever find a solution.
Thanks
Thanks — there are very little details available about this plugin.
Does it do the job?
Can I create a custom HTML template and drop in some shortcode to include x number of posts, with title, excerpt & links?
And is there a way to just buy it without the support & updates?
Thanks again.