Forum Replies Created
-
AuthorPosts
-
Thanks Mike for the Plugin recommandation,
does that mean there is no programmatic way/hook to remove dynamically widget like ‘Footer – Column 2’ like
dynamic_sidebar( 'Footer - Column 2' ) = false;
(which is not working
Best regardsHi Mike,
not really my solution. But when i can add lets say the Footer Column 1 – Widget with
dynamic_sidebar( 'Footer - Column 1' );
how can i remove ‘Footer – Column 2’ . I tried
dynamic_sidebar( 'Footer - Column 2' ) = false;
but thats not working.
Best regardsHi Rikard,
thanks i know the backend. As i said
Change the footer depending on the URL dynamically. Therefore I need a hook/filter similiar to the the OPtion in the backend to hide the footer.
Best regardsHi Rikard
i know how to check the URL to change something dynamically, but unfortunately i dont know the hook/filter to show not the footer widgets or the whole footer (something like avia_get_option(‘footer_columns’);). Can you give me a hint
Thank youHey Ismael,
thanks for your quick reply. The Blog Post Category option in the Enfold > Blog Layout > Blog Meta Elements section is activated, but the blog grid oly has options like “Title and Excerpt” and so on no “Show category”
Is there an option to insert it in blog.php from line 297'subtype' => array()
where it says:array( 'name' => __( 'Define Blog Grid Layout', 'avia_framework' ), 'desc' => __( 'Do you want to display a read more link?', 'avia_framework' ), 'id' => 'contents', 'type' => 'select', 'std' => 'excerpt', 'lockable' => true, 'required' => array( 'blog_style', 'equals', 'blog-grid' ), 'subtype' => array( __( 'Title and Excerpt', 'avia_framework' ) => 'excerpt', __( 'Title and Excerpt + Read More Link', 'avia_framework' ) => 'excerpt_read_more', __( 'Only Title', 'avia_framework' ) => 'title', __( 'Only Title + Read More Link', 'avia_framework' ) => 'title_read_more', __( 'Only excerpt', 'avia_framework' ) => 'only_excerpt', __( 'Only excerpt + Read More Link', 'avia_framework' ) => 'only_excerpt_read_more', __( 'No Title and no excerpt', 'avia_framework' ) => 'no' ) ) );
or like for post-slider to described in Display post tags on Blog Posts element a function like:
function new_avf_postslider_posts_meta_data_show(){ return true; } add_filter('avf_postslider_posts_meta_data_show', 'new_avf_postslider_posts_meta_data_show');
Thanks for any hint
- This reply was modified 8 months ago by gpweb.
I will be interested as well, because i don’t see this option as well
Thanks -
AuthorPosts