Hi,
Is there a way to hide the URL’s on my blog page so it just displays the Title? So when you click on the title it takes you to the link?

Hi,
Is there a way to hide the URL’s on my blog page so it just displays the Title? So when you click on the title it takes you to the link?

Hi There,
Thanks for writing in!
Please add this CSS to your Pro -> theme option -> global CSS.
.blog .format-link .entry-title-sub {
display: none !important;
}
Hope this helps!
That worked! Thank you so much!
You are most welcome. 
Hi,
That did work, but now it stopped!?!?! Also, how do I get it so when you click on the Title, it take you to that link?
Hi @jmccarley
This is either a caching issue (so please clear cache from any caching plugin you have), or there is an error in the syntax of the CSS codes you added in (Theme Options > CSS), in this case, you can verify the syntax using this tool.
If this didn’t help, then please provide us with WordPress Dashboard login details in a “Secure Note” so we can investigate this issue.
Thanks.
Okay, it does seem to be a caching issue. I just checked on another device.
However, I still should like it to go directly to the Link when you click on the title, not the post. Can you help with that?
Hi @jmccarley
Sorry, I missed that one.
In this case, please add this JS code to (Theme Options > JS):
jQuery( document ).ready(function($) {
jQuery('.entry-header .x-hgroup').each(function(){
var target_link = jQuery(this).find('.entry-title-sub a').attr('href');
jQuery(this).find('.entry-title a').attr("href", target_link);
});
});
As this is all custom development, regretfully we wont be able to assist further. Custom development is outside the scope of our support. Were happy to provide advice and get you started in the right direction, but you would still be responsible for the implementation. And moreover, this solution may not work after several updates especially if the themes structure changed or overridden.
Thanks.
Thank you for your help again! I’ll give it a try and keep that in mind in the future!
You are most welcome. 
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.