Infinity TNC Divi Modules
Divi is one of the most powerful page builders in today’s world. Infinity TNC is here to make it even more powerful with the addition of exciting and powerful new modules. Simply get this addon, install and start using the power of amazing modules. With this plugin, you can access a growing library of functionalities that will streamline your design process and help you create exceptional Divi websites. Simply drag and drop the required modules, integrate dynamic elements, and engage the audience. Download this plugin to get all the modules you need to design stunning websites with your favorite Divi builder. Since Infinity TNC Divi Modules is a free plugin, you can install it directly without hassle. Now compatible with Divi 5! Every module works in both the classic Divi 4 Builder and the new Divi 5 Visual Builder. Existing layouts built with Divi 4 are converted automatically, so you can upgrade to Divi 5 without rebuilding your pages. Currently included Modules: BreadCrumbs Divi Module: Our Breadcrumbs module displays a clear path through the website’s hierarchy, allowing users to see their current position and quickly navigate to previous sections. This promotes a smooth user experience and keeps visitors engaged. Social Share Divi Module: When you publish a blog post or an exciting news story that deserves to be seen by a wider audience. The social sharing module allows visitors to easily share your content across their favorite social media platforms like Facebook, WhatsApp, Twitter, Pinterest, Linkedin, Telegram, Reddit, Tumblr, Email, Blogger, and more with just one click. This increases social proof, expands your reach, and potentially drives more traffic back to your website. Logo Carousel Divi Module: Showcase multiple logos of your clients, partners, or sponsors in a visually appealing and dynamic carousel. It can be used for clients, partners, sponsors, and many other purposes, such as when you need a section that interactively showcases the logos. Star Rating Divi Module: The Star Rating module allows users to review and rate your products or services. This valuable social proof can significantly influence purchase decisions and increase conversions. Dual Buttons Divi Module: Dual Buttons module lets you present visitors with two clear calls to action, guiding them toward the desired conversion path. With this module, you can show visitors two distinct CTAs, allowing them to choose the path that best aligns with their needs. This could be a combination of “Buy Now” and “Learn More” or “Subscribe” and “Download” like this way. Image Carousel Divi Module: The ultimate image carousel module for divi, lets you create outstanding carousel with your images. Use it to showcase any type of images. Heading Gradient Divi Module: Make your website title more attractive. Our Title Gradient module adds a touch of dynamism with an impressive color gradient effect. It grabs the user’s attention, differentiates your headlines, and improves the overall visual appeal of your website. Heading Typewriter Divi Module: Create a sense of anticipation with this module. This module simulates how your titles are displayed character by character. It’s a perfect way to introduce essential sections to your website or showcase key product features. Embed Map (Google map ) Divi Module : The embedded map module allows users to navigate effortlessly, displaying your location or allowing them to find you easily. Enter your address or desired location details so that users can easily find and reach you, improving connectivity and accessibility for your global audience. Youtube Video Divi Module: Embed YouTube videos directly into your website pages with this module. Just drag and drop the module, enter the YouTube video URL, and watch your content appear as your website layout. This ensures a smooth viewing experience for your viewers. Vimeo Video Divi Module: Easily integrate Vimeo videos using this module. Drag and drop the module, and enter the Vimeo video URL. This allows you to display your high-quality video content on your Divi website without any hassle. Many more modules will come out of this. Our team is constantly working on it to get the best user output.
Top keywords
- module26×3.85%
- divi22×3.26%
- divi module11×1.63%
- website8×1.19%
- modules7×1.04%
- carousel5×0.74%
- social5×0.74%
- video5×0.74%
- allows4×0.59%
- users4×0.59%
- visitors4×0.59%
- allowing3×0.44%
Text Modules
Use the new Text Modules custom post type and display a text module by either shortcode or widget. Have you ever wanted to use some pieces of text information more than once? For instance, contact information such as a postal address? Or some slogan, motto or claim? This is exactly when Text Modules kicks in. Usage This plugin registers a simple post type for text modules. A text module can be accessed either via shortcode (by means of the text module’s ID or slug) or via a new Tex Modules widget. Filters In order to customize certain aspects of the plugin, it provides you with several filters. For each of these, a short description as well as a code example on how to alter the default behavior is given below. Just put the according code snippet in your theme’s functions.php file or your customization plugin, or to some other appropriate place. text_modules_after_widget_content This filter lets you alter the HTML after the widget content. /** * Filter the HTML after the widget content. * * @param string $after_widget_content Some HTML after the widget content. */ add_filter( 'text_modules_after_widget_content', function() { return ' '; } ); text_modules_before_widget_content This filter lets you alter the HTML before the widget content. /** * Filter the HTML before the widget content. * * @param string $before_widget_content Some HTML before the widget content. */ add_filter( 'text_modules_before_widget_content', function() { return ' '; } ); text_modules_post_type Yes, you can alter the post type (slug). /** * Filter the post type. * * @param string $post_type Post type. */ add_filter( 'text_modules_post_type', function() { return 'exotic_stuff'; } ); text_modules_post_type_args If you want to alter a specific post type argument but you can’t find a fitting filter, there’s text_modules_post_type_args, which provides you with the complete args array. /** * Filter the post type args. * * @param array $args Post type args. */ add_filter( 'text_modules_post_type_args', function( $args ) { // Use hierarchical external content $args[ 'hierarchical' ] = TRUE; return $args; } ); text_modules_post_type_description The post type description can be customized by using the text_modules_post_type_description filter. /** * Filter the post type description. * * @param string $description Post type description. */ add_filter( 'text_modules_post_type_description', function() { // Provide a description return 'Simple post type for text modules.'; } ); text_modules_post_type_labels In case you don’t like the labels, easily adapt them to your liking. /** * Filter the post type labels. * * @param array $labels Post type labels. */ add_filter( 'text_modules_post_type_labels', function( $labels ) { // A little more horror, please... $labels[ 'not_found' ] = 'ZOMG, no text module found!!1!!1!!oneone!!!1!eleven!1!'; return $labels; } ); text_modules_post_type_supports This filter provides you with the post type supports. /** * Filter the post type supports. * * @param array $supports Post type supports. */ add_filter( 'text_modules_post_type_supports', function( $supports ) { // Let's add revisions for our post type if ( ! in_array( 'revisions', $supports ) ) { $supports[] = 'revisions'; } return $supports; } ); text_modules_shortcode_apply_do_shortcode By default, do_shortcode() will be called on the shortcode output. Of course, you can change that. /** * Filter if the shortcode should apply do_shortcode() to the output. * * @param bool $do_shortcode Should the shortcode apply do_shortcode()? */ add_filter( 'text_modules_shortcode_apply_do_shortcode', '__return_false' ); text_modules_shortcode_callback In case you would like to adapt how the shortcode data is handled, you can provide your own shortcode callback. This can either be a string holding the function name, or an array with either a class name or an object, and the according method. /** * Filter the shortcode callback. * * @param array|string $callback Shortcode callback. */ add_filter( 'text_modules_shortcode_callback', function() { return 'my_text_modules_shortcode_callback'; } ); text_modules_shortcode_id_attribute_name This filter lets you alter the shortcode’s ‘id’ attribute name. /** * Filter the 'id' shortcode attribute name. * * @param string $name Attribute name. */ add_filter( 'text_modules_shortcode_id_attribute_name', function() { return 'post_id'; } ); text_modules_shortcode_output This filter lets you alter the shortcode output. The second parameter holds the shortcode attributes array. /** * Filter the shortcode output. * * @param string $output Shortcode output. * @param array $atts Shortcode attributes array. */ add_filter( 'text_modules_shortcode_output', function( $output ) { return $output . ' Over and out.'; } ); text_modules_shortcode_query_args Also, there’s text_modules_shortcode_query_args, which provides you with the complete args array for the shortcode’s query. /** * Filter the shortcode query args. * * @param array $args Shortcode query args. */ add_filter( 'text_modules_shortcode_query_args', function( $args ) { // Exclude some text modules by ID $args[ 'post__not_in' ] = array( 4, 8, 15, 16, 23, 42 ); return $args; } ); text_modules_shortcode_slug_attribute_name This filter lets you alter the shortcode’s ‘slug’ attribute name. /** * Filter the 'slug' shortcode attribute name. * * @param string $name Attribute name. */ add_filter( 'text_modules_shortcode_slug_attribute_name', function() { return 'post_slug'; } ); text_modules_shortcode_tag This filter lets you alter the shortcode’s tag. /** * Filter the shortcode tag. * * @param string $shortcode_tag Shortcode tag. */ add_filter( 'text_modules_shortcode_tag', function() { return 'text_block'; } ); text_modules_shortcode_use_slug By default, text modules are being queried by their post ID first. Of course, you can change that and use the post slug instead. /** * Filter if the shortcode (query) should use the post slug instead of the post ID. * * @param bool $use_slug Use slug instead of ID? */ add_filter( 'text_modules_shortcode_use_slug', '__return_true' ); text_modules_widget_form_query_args Also, there’s text_modules_widget_form_query_args, which provides you with the complete args array for the widget form’s query. /** * Filter the widget form query args. * * @param array $args Query args. */ add_filter( 'text_modules_widget_form_query_args', function( $args ) { // Exclude some text modules by ID $args[ 'post__not_in' ] = array( 4, 8, 15, 16, 23, 42 ); return $args; } ); Contribution To contribute to this plugin, please see its GitHub repository. If you have a feature request, or if you have developed the feature already, please feel free to use the Issues and/or Pull Requests section. Of course, you can also provide me with translations if you would like to use the plugin in another not yet included language.