=== Advanced Visual Elements ===
Contributors: ziher4
Tags: library, visuals
Requires at least: 3.0.1
Tested up to: 6.2
Stable tag: 1.0.0
Requires PHP: 7.4
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Ever-growing library of advanced visual elements you can't find in standard builders - customize and implement visuals to save time, money and spice up your website's looks!
== Description ==
Enhance the appearance of your website with our extensive collection of advanced visual elements for WordPress that are not available in typical builders.
== Installation ==
1. Search `Advanced Visual Elements` and install from the official plugin repository through WP dashboard
OR
1. Upload `/adv-vis-ele/` to `/wp-content/plugins/` directory
2. Activate the plugin through 'Plugins' menu in WordPress
== Screenshots ==
1. Elements Library
2. Elements Library showing some of textual Elements
3. Element configurator
4. Element configurator
5. Element configurator Quick preview feature
== Changelog ==
= 1.0.0 =
* Initial plugin functionality.
== Features ==
- Download from a constantly growing library of elements
- Super lightweight - download and use only elements you want to use
- Can be used with any page builder
- Easy to customize
- Easy to implement through generated shortcodes
- Supports all major browsers
- Updated frequently
- Mobile friendly
- Export/Import settings for a quick workflow
- Has dynamic settings (can use post data)
== Frequently Asked Questions ==
= Is this plugin free? =
Yes, you can use basic version which has most of the element library and settings for free.
Download by clicking here!
= How does it work? =
We collected and compiled most popular code pieces from web and made a library out of them. You can download and customize them, as a developer would normally do - except you don't have to dive into the code, we connected the code with the editor so it's easy for you to work with it.
= What do I get if I buy the license? =
You get all of the library and settings unlocked, dynamic settings option and support. This means you get more control and a better choice! And since it's our plan for the library to be an ever-growing code repository - you'll get even more content in the future.
= How do I buy PRO license? =
Go to our shop to purchase it!
= I bought the license but.. =
We have a 30-day money back guarantee policy so you'll get your money back.
= Will this plugin work with my theme/builder? =
Yes, it works with any theme and any builder - it utilizes shortcodes to embed anywhere on your website.
= How do I programmatically prevent the element from rendering? =
Use this PHP code to prevent element rendering completely:
add_filter('ave_filter_render_flag', '__return_false');
or if you want to check post/shortcode ID, then use:
add_filter('ave_filter_render_flag', function($post_id) { return false; });
= My Element is not rendering properly - what do I do? =
Make sure to update both the plugin and the library, if the problem persists report it on the plugin support page.
= How can I filter out settings when rendering an Element on front-end? =
If you are a PRO user, you can use this filter:
add_filter('ave_filter_element_settings', function ($settings, $post_id) { return $settings; });
= Are there any action hooks available? =
Yes, you can use:
ave_action_before_element
ave_action_after_element
= I have an unanswered question - how can I get support? =
Please log in to your account here. Inside your dashboard you'll find Support section, fill out the form (please copy all the info from the "Debug info" box found on Settings page) and submit - we'll get back to you as soon as we can.