This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This code checks if the visitor's email address is already in your fluentCRM database as a contact | |
// based on the target email field, if it is, it will give you feedback and the submission will not run. | |
// place the code in the child theme functions.php or a custom code snippets plugin, like FluentSnippets | |
// Change the $email_field_id = 'email'; email with your field id | |
// You need to set a name for your form: if ($form_name !== 'FluentForm') { | |
// HELP IMAGE https://prnt.sc/5rsOUX84ALYX | |
// HELP IMAGE: https://prnt.sc/a1FIhRDVZ9tA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This hook will connect to a specified field and check its contents. | |
// It checks the specified "dictionary" to see if there are any words that are in the banned list. | |
// If so, it does not run through the form, but returns failed. A custom message can be added. | |
// place the code in the child theme functions.php or a custom code snippets plugin, like FluentSnippets | |
// How to use. Go to your jetformbuilder form. Add a new Call hook post submit actions top of the action list. Paste the following hook name: | |
// badword-validator | |
// HELP IMAGE: https://prnt.sc/R4E5mMrAVOSA | |
// paste the following code: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// place the code in the child theme functions.php or a custom code snippets plugin. | |
// Best usage in the Listing Grid | |
// Open an widget, dynamic visibility, and search the Is Front page visibility under the Custom category. | |
add_action( 'jet-engine/modules/dynamic-visibility/conditions/register', function( $conditions_manager ) { | |
class Is_Front_Page_Condition extends \Jet_Engine\Modules\Dynamic_Visibility\Conditions\Base { | |
public function get_id() { | |
return 'is-front-page'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// place the code in the child theme functions.php or a custom code snippets plugin like FluentSnippets | |
// how to use | |
// Create a new Terms Query in the Query builder | |
// Go to the Include/Exclude section | |
// click the Include section dynamic icon and choose the Empty terms option, and select whitch terms want to use | |
add_action( 'jet-engine/register-macros', function() { | |
class Empty_Terms_Macro extends \Jet_Engine_Base_Macros { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This code monitors a given data store type (Store item on view), | |
// and updates and replaces it with the value stored in the store in a given meta (number based) programmed way. | |
// It's ideal if you want to count the number of times a post has been viewed, and want to continuously transfer the value to a meta | |
// (so you can do a popular sorting filter, for example) | |
// place the code in the child theme functions.php or a custom code snippets plugin like FluentSnippets | |
// how to use | |
// Create a new Data store - enable the "Count Items", and "Store item" on view option, and choose post type | |
// Create a number type meta (jetengine, or other plugins, or php) | |
// In the Number meta, recommended to set a default 0 value | |
// replace the "megtekintes" with your data store SLUG (you need to replace in two places top of the code, and bottom of the code !!) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// másold be a kódot egy snippet tárolására alkalmas bővítménybe. | |
// FluentSnippets esetében válaszd a Content (php + html) opciót és a teljes kódot másold be , hogy hol fusson "Where to run" válaszd a "Site Wide Footer" opciót | |
// cseréld ki a képet, a saját weboldaladra feltöltött médiatáras kép linkjével | |
// ezt cseréld ki a kódban: "<img id="fixedImage" src="http://sajatweboldalam.hu/wp-content/uploads/2024/05/infoblokk-jobb-also-sarokban.png" alt="Szechenyi logo">" | |
// a kód alsó részében (script részben) van egy átirányítási opció ha a képre kattintanak, kommenteld ki, vagy töröld ha nincs rá szükséged. | |
// localstorage ba tárolja a kód, ha el van rejtve, vagy nincs a logó, így nem nyitja ki minden oldal újratöltődéskor. | |
<div id="imageContainer"> | |
<button id="toggleButton"> | |
<svg id="chevronIcon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-up"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// place the code in the child theme functions.php or a custom code snippets plugin like FluentSnippets | |
// how to use | |
// Create a new Users Query in the Query builder | |
// Go to the Include/Exclude section | |
// click the Include section dynamic icon and choose the Fluent CRM Users with Contact Type | |
// HELP IMAGE https://prnt.sc/06FFNY9E24Sg | |
// This macro returns the identifiers of users who can be found in fluentCRM as both contacts and wordpress users. | |
// In addition, you can select which Contact type you want to retrieve users from. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// place the code in the child theme functions.php or a custom code snippets plugin like FluentSnippets | |
// how to use | |
// Create a new Users Query in the Query builder | |
// Go to the Include/Exclude section | |
// click the Include section dynamic icon and choose the Fluent CRM Users with List | |
// HELP IMAGE https://prnt.sc/06FFNY9E24Sg | |
// This macro returns the identifiers of users who can be found in fluentCRM as both contacts and wordpress users. | |
// You can also select which CRM list you want to retrieve the users from |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// place the code in the child theme functions.php or a custom code snippets plugin like FluentSnippets | |
// how to use | |
// Create a new Users Query in the Query builder | |
// Go to the Include/Exclude section | |
// click the Include section dynamic icon and choose the Fluent CRM Users with Status | |
// HELP IMAGE https://prnt.sc/06FFNY9E24Sg | |
// This macro returns the identifiers of users who can be found in fluentCRM as both contacts and wordpress users. | |
// In addition you can select which subscription state you want to retrieve users from, you can retrieve users from all default states. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// place the code in the child theme functions.php or a custom code snippets plugin like FluentSnippets | |
// how to use | |
// Create a new Users Query in the Query builder | |
// Go to the Include/Exclude section | |
// click the Include section dynamic icon and choose the Fluent CRM / WP Users macro | |
// HELP IMAGE https://prnt.sc/06FFNY9E24Sg | |
// This macro returns the identifiers of users who can be found in fluentCRM as both contacts and wordpress users. | |
// It will not return users who are not registered on your WordPress site. The subscription status is independent for this macro. |