Listing titles show twice… and other 2 problems

This topic contains 7 replies, has 3 voices, and was last updated by  Paolo 9 years, 3 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #26893

    Omar Burjaq
    Free User
    Post count: 16

    Hi ..

    1- Got a weird problem started recently.. the listing titles on the all places page are showing twice separated by “> … they show fine elsewhere and on widgets

    2- on the same listing page my these footer is showing on the right sidebar instead of the footer

    3- when clicking on send inquiry .. the margin are not enough to show the full text

    Thanks for your help

    #26896

    Omar Burjaq
    Free User
    Post count: 16
    This reply has been marked as private.
    #26902

    Guust
    Moderator
    Post count: 29970

    You can add this to the CSS:

    #simplemodal-container .row label {margin-left: 25px;}

    That should fix the pop-up form.

    The double title seems to have to do something with whatever plugin that is adding the Edit button to the post. Try disabling that plugin and see what happens.

    #26928

    Paolo
    Site Admin
    Post count: 31206

    If you are using customizr theme, you can solve the titles problems by removing the two functions of that theme that are causing that bug:

    add this in your theme’s functions.php file.

    
    
    /Create the Customizr title
    remove_filter( ‘the_title’ , array( $this , ‘tc_content_heading_title’ ) , 0 );
    //Add edit link
    remove_filter( ‘the_title’ , array( $this , ‘tc_add_edit_link_after_title’ ), 2 );

    Let us know,

    Thx

    #26957

    Omar Burjaq
    Free User
    Post count: 16

    Hello Guust and Paolo

    1- I looked into all my plugins .. the only one i suspect is wp-user-frontend.. I tried disabling it but same problem remains .. yet there’s an option in wpuf say ( Override the post edit link) .. when selected the edit button (between the repeated titles ) disappears .. but not the the repeated titles

    2- where exactly shall i add the code Paolo ? .. I added it to functions.php and no change .. the titles are still repeated on the places page .. but not on widgets by the way ( latest posts ) and not on detail page .. also my blog titles and event manager pages looks alright!

    I appreciate any help

    #26960

    Guust
    Moderator
    Post count: 29970

    Oops, Paolo forgot a “/” on the first line, I corrected it here.

    
    
    //Remove the Customizr title
    remove_filter( ‘the_title’ , array( $this , ‘tc_content_heading_title’ ) , 0 );
    //Remove edit link
    remove_filter( ‘the_title’ , array( $this , ‘tc_add_edit_link_after_title’ ), 2 );

    It is not the plugin, that EDIT buttons seems to be part of the theme: https://wpgeodirectory.com/support/topic/bugs-with-customizr-theme/

    I added the code to your functions.php but it indeed only solves the problem on the detail page, not the listing page.

    Over to Paolo again …

    #27157

    Omar Burjaq
    Free User
    Post count: 16

    shall I start looking for a new theme ? : (

    #27160

    Paolo
    Site Admin
    Post count: 31206

    I would 1st ask to the theme author if there is another filter altering titles, or search through the theme with dreamweaver to find them all (searching this though all theme files should do it : add_filter( ‘the_title’ ).

    Than remove the last filter as we did above for he previous 2.

    Changing theme is another option.

    Thx

Viewing 8 posts - 1 through 8 (of 8 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket