• Resolved Christos

    (@chrismengm)


    Can you please tell me how can I edit the link of the page that the widget of your plugin refers ?

    For example I added your widget to my homepage but when i click it it takes me to the other sites blogpage and not the homepage. This is pretty confusing for my visitors. I have found the link that I have to edit by using safari developer tools but I cant locate this file…

    Please help.

    Here is an image that might help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • This will be fixed in the next version. We are preparing the release right now.

    Thread Starter Christos

    (@chrismengm)

    Is there a way to do it manually by editing its code ?

    By using safaris developer tools I found that the link is wrong. Can I edit this link manually ?

    Until the update is out, you can filter mlp_linked_element_link. Something like this (not tested):

    add_filter( 'mlp_linked_element_link', 'temporary_front_page_fix' );

    function temporary_front_page_fix( $link )
    {
    if ( is_home() and home_url( '/' ) !== $link )
    return home_url( '/' );

    return $link;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Edit the link of the page that the widget refers.’ is closed to new replies.