Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #307783

    Hi,
    the sidebar chose is not displaying on blogpage.

    My settings:
    On enfold options page i choose blog as blog page. On the page itself I choose my own sidebar named own Blog within the elements I want to display, but on the blogpage the default sidebar is shown.

    What am I doing wrong?

    http://kreativermoment.com/blog

    #308124

    Hi JanoschG!

    Once you use the theme options to set your blog page that pages settings are ignored (unless you choose to use the advanced layout editor for the blog style).

    The Sidebar Blog sidebar will then be the default sidebar for the blog page which is not one that needs to be created custom.

    Cheers!
    Devin

    #308196

    Thanks for your answer.

    So I put my widgets into to the blog sidebar widget area, they appear on my blog page above the default widgets, how to get rid of them?

    Thanks in advance

    • This reply was modified 10 years, 2 months ago by JanoschG.
    #308434

    I have antother question. How do I change the placeholder in the datefield of the contact form? I don’t want to have that DD / MM / YY.

    I searched a bit in the themefiles but I don’t now where to look for it…

    • This reply was modified 10 years, 2 months ago by JanoschG.
    #308917

    Hey!

    If you want more specific control of what widgets show where you can use this plugin: http://wordpress.org/plugins/display-widgets/

    For the data placeholder, do you mean literally DD / MM / YY to be a specific date?

    Cheers!
    Devin

    #309411

    Thanks,

    no I want to change the Placeholder into TT.MM.JJ

    #309655

    Hey!

    Please use this on functions.php:

    add_filter('avf_datepicker_date_placeholder', 'avf_change_datepicker_date_placeholder');
    
    function avf_change_datepicker_date_placeholder($placeholder) {
    	$placeholder = 'TT.MM.JJ';
    	return $placeholder;
    }

    Cheers!
    Ismael

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.