https://www.dropbox.com/scl/fi/w3o10lwdxqn4rg7josn77/screen-shot-2025-02-15-at-9.56.13-AM.mov?rlkey=xn1sybji9kzd3ai4cla4nejwz&dl=0
]]>Wenn ich den Text direkt einfüge, dann passt alles. Wenn ich den Shortcode für die Sicherheitshinweise in der Beschreibung nutze, dann wird dies auch korrekt angezeigt. Nur wenn ich den Shortcode tats?chlich in den Sicherheitshinweisen nutze, dann ist die Formatierung falsch.
Das Problem kann ich leider nicht anders erkl?ren. Ich kann es bedauerlicherweise auch nicht zeigen, da ich es aktuell nicht eingebaut habe, weil es nicht funktioniert. Ich vermute, dass bei den Sicherheitshinweisen im Zusammenspiel mit Beaver Builder ein Tag nicht korrekt geschlossen wird. Das passiert, wie zuvor erw?hnt, aber nur bei den Sicherheitshinweisen, in der Beschreibung tritt der Fehler nicht auf!
Eventuell kann man das prüfen, indem man versucht, es zu reproduzieren. Bei Bedarf kann ich auch versuchen, das Problem auf einer Staging Site zu erstellen, falls der Bedarf besteht!
]]>Currently, we can only use it on non-Beaver Builder enabled pages and posts on our site.
]]>It also works perfectly with WooCommerce and popular builders like Elementor, Beaver Builder, and Divi.
]]>When I modify a page on the site, with Beaver Builder, I then :
– Create the static site with Simply Static
– Save the Zip folder and extract it
– Copy/paste all files into the site directory.
– Run git add/commit/push to start the site publishing process with Github Action and Firebase Hasting.
My problem is that I have to extract, copy/paste and git add ect… the whole static site for my changes to be taken into account on the published site. If I only copy/paste one page from the Simply Static folder, the CSS won’t be applied to the final site…
Will the Pro version allow me to extract – and publish – only one page, and also improve my workflow, for example by avoiding the zip step, but still allowing me to check files before publishing?
Thanks!
]]>Thanks! @brisch
]]><?php
/**
* Plugin Name: Clear BB Cache Before Saved Row Update
* Description: Clears the Beaver Builder cache before updating any Saved Row.
* Author: Yours Truly
* Version: 1.1
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
// Hook into Beaver Builder's before save layout action.
add_action( 'fl_builder_before_save_layout', 'clear_bb_cache_before_update_saved_row', 10, 2 );
/**
* Clear Beaver Builder Cache Before Updating Saved Rows
*
* @param int $post_id The post ID.
* @param array $data The layout data.
*/
function clear_bb_cache_before_update_saved_row( $post_id, $data ) {
// Check if the post is a saved row.
if ( 'fl-builder-template' === get_post_type( $post_id ) ) {
// Clear the Beaver Builder cache.
if ( class_exists( 'FLBuilderModel' ) ) {
FLBuilderModel::delete_asset_cache();
FLBuilderModel::delete_all_transients();
}
}
}
]]>the problem is Algolia plugin (WP Search with Algolia by WebDevStudios) does not support pagination on posts widget. and it shows 404 page. how can I solve this issue?
]]>