Tagged: ,

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #526416

    1: Hi, Enfold Expert, recently i purchase your theme i setup everything, but one thing i dont understand on breadcrumb title for page or archive tag etc title, it display also a permanent link when mouse over on it…

    you can see it in the screenshots below….i want to not display the permanent links when mouse over on it.

    showing permanent link: http://prntscr.com/8weso5

    i want to do setup like this website has done ( gooyaabitemplates.com ) which show only title >> title on mouse over…and there is no permanent link show there. check the screenshot of this too.

    without showing permanent links: http://prntscr.com/8wev0s

    So, what to do when there is showing the title for page etc without permanent links…like that website done it.

    also let me know what does permanent link mean showing there ?

    Hope to see your reply. thanks.

    #526521

    Hey Hafeez Ullah!

    Please insert the following css into your cusotm css section:

    #top .alternate_color.title_container .main-title a {
    	pointer-events: none !important;
        cursor: default !important;
    }

    Regards,
    Dake

    #526704

    Hi, Dake

    Things are still not resolved, you gave me the css style to add in the custom css…i know that and add it but ccs only hide it’s link title on move over, while it is still activated……..check it.
    http://jojothemes.tk/blogger-templates/responsive/

    screenshot: http://prntscr.com/8wluby

    i want to not included this link ( title=”Permanent Link: Responsive” )

    title=”Permanent Link: Responsive” ( it should not include the parameter “permanent Link” it should look like this: title=”responsive” not the permanent link.

    check this site, http://www.gooyaabitemplates.com ( on breadcrumbs you will not see a permanent link..it display the same title link, and title.

    hope to hear soon from you.

    thanks.

    #527532

    Hey!

    Please add following code to functions.php file in Appearance > Editor

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    Cheers!
    Yigit

    #527813

    Thanks Yigit, but there is one thing still in pending..

    Your code work perfect, but it cannot display the title when mouse over on it.

    example: you can see a title display when mouse over on “responsive” in site https://gooyaabitemplates.com/blogger-templates/responsive/

    while after putting your code in function.php in my site, there is nothing display when mouse over on “responsive” http://jojothemes.tk/blogger-templates/responsive/

    i want to display a title of the same title when mouse over on it….

    thanks.

    #528832

    Hey!

    Just to make sure that we are on the same page, you would like to remove title from title and leave it on other elements? If so, please change the code to following one

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.main-title.entry-title a').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    If not, please elaborate a bit more.

    Best regards,
    Yigit

    #531914

    Hi, Yigit, the script is not work like that what i want.

    please see it here.

    i dont want to show permanent Links when mouse over on title Blogger Templates. site: http://themezy.tk/

    check in screenshot: http://prntscr.com/903swg

    i want to show only Blogger Templates not the permanent links should be seen on mouse over on it.

    #532038

    Hey!

    Please go to Appearance > Editor and open functions-enfold.php file andfind and remove following “Permanent Link:”

    Cheers!
    Yigit

    #532858

    Hi, Yigit i tried to remove that permanent link from the funcation-enfold-php but then the site was not working when save that.

    check screenshot i remove this: http://prntscr.com/90vd6t

    Or

    please remove that permanent link for me from this code, it might be possible i removed it wrongly.

    
    		if(!empty($link) && !empty($title)) $title = "<a href='".$link."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".esc_attr( $title )."' $markup>".$title."</a>";
    

    if this was the code, then please edit it to remove that “permanent Link” and give me again here.

    #533580

    Hey!

    It does work fine on my end – http://i.imgur.com/m6IrKuJ.png
    Do you mind creating a temporary admin login and posting it here privately so we can make the changes for you?

    Regards,
    Yigit

    #534407

    Yigit, please give me that coding with customization, means remove the permanent link tag from the above code and do post it again here in reply. thanks.

    #534434

    Hi!

    Changes you should make are included in my post i made on 8th of November. I included screenshots this time. Please see instructions below:
    – Login to your WordPress dashboard
    – Go to Appearance > Editor
    – Find functions-enfold.php file from the list on the right and click on it
    – once it is opened, please search “Permanent Link:” and remove it
    Before and After screenshots are here – http://imgur.com/a/4mX4P

    Cheers!
    Yigit

    #534446

    thanks bundles Yigit,

    this has worked for me, thanks for better explanation with screenshots.

    #534451

    Hi!

    You are welcome, glad we could help! :)

    Cheers!
    Yigit

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘How to Remove Permanent Link ?’ is closed to new replies.