balubino
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 - PayPal & Stripe Add-on] Error: REST API & loopbackHi,
experiencing those same two error reports in Site health.
Besides allegedly having some kind of impact on wordpress background update checks, this has a noticable impact on another plugin using curl to perform remote requests to a third party API.
There seems to happen some sort of low level conflict where, having Paypal&Stripe add-on active, curl calls from the second plugin get delayed by 10 seconds each, which renders the website in this circumstances unusable.
This is really nasty and hard to debug. What may the cause of this behaviour? As soon as Paypal&Stripe add-on is disabled this behaviour ceases. We’ve also verified this by selectively disabling the add-on in specific pages with the help of a loading filter like the Plugin Load Filter.Any response appreciated.
AntonioForum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] Multiple Templates?As far as i know this feature is not present at the moment.
You can provide your own template, copying the relevant files to your theme folder to be taylored and adjusted, but you can’t switch to different templates for different contexts.
However, with a bit of PHP you can set conditional expression in the template files themselves.
Or you can leverage the action hooks the plugin provides to branch to different files depending for example on the post_type. This way you can in fact craft the functionality yourself.Antonio
Had same problem after moving to production.
Wasn’t able to identify the cause (php or gd extension version?) but the
solution outlined in this other support thread resolved my issue.
Tag line: don’t include domain in the src attribute of the image.https://wordpress.org/support/topic/pdf-images-not-showing-in-pdfs/#post-9595950
Antonio
Forum: Plugins
In reply to: [WP FullPage] Selecting from a standard template all FP pagesSince I just needed to extract an index of pages being marked as FullPage I resorted to a combination of wp_posts, looping through all pages and then checking with get_post_meta to get the relevant option.
foreach ( $fp_items as $fp_item ) { $fp_options = get_post_meta( $fp_item->ID, 'wpfp_fullpage_pt_fullpage_options', true ); if ( $fp_options["isItFullpage"] == 'yes' ) { } }thanks
AntonioForum: Plugins
In reply to: [WP FullPage] Selecting from a standard template all FP pagesHi Julien,
thanks, that is the idea.
Could you point to a file in the plugin source managing this loop where I can take a peek to get an inspiration?Anyway I’ll try this route, thanks again
Antonio