By Michael Chetelat on Friday, 26 January 2018
Posted in General
Likes 0
Views 279
Votes 0
Is there a way to disable the hyperlink for Category Titles? We want users to navigate categories and blogs withOUT clicking on the Category Title. (see screenshot attached)
Hey there,

I am really sorry for the delay of this reply as it is a weekend for us here.

You can apply this following CSS to prevent user click on that category link from your backend > Easyblog > theme > custom css > apply following code > save


body #eb.eb-view-categories.eb-layout-listings .eb-category-name.reset-heading a {
pointer-events: none;
}


After you applied the code and save it, you have to clear your backend cache and your browser cache, in case it didn't load this new custom css on the site.
·
Saturday, 27 January 2018 12:46
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Arlex,

Thanks for your rapid response! I may have done something wrong because it does not appear to be working.

Here is a link to our EB blogs page for testing: https://christianbusinessnetwork.com/resources/wisdom-at-work

The attachment shows what I added to the Custom CSS section. Please advise.

Michael
·
Sunday, 28 January 2018 02:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Hm, It seems like this page is totally different than what you shown me at your first post.

First post screenshot what you provided to us -> http://take.ms/djOwe

This is the page what you tested with -> http://take.ms/kUiSg

If you view on this single category page https://christianbusinessnetwork.com/resources/wisdom-at-work/categories/my-utmost-for-his-highest here, you will unable to click on that category title.

http://take.ms/9DzGn

If i misunderstand your question in earlier, can you provide us one of the screenshot and highlight it which link you would like to disable it?
·
Sunday, 28 January 2018 11:51
·
0 Likes
·
0 Votes
·
0 Comments
·
I want to disable a visitor's ability to go to any main Category or Sub-category Page by clicking on the Category or Sub-category Title. Therefore, I want to disable ALL Category Title hyperlinks. (see attached)

https://christianbusinessnetwork.com/resources/wisdom-at-work/categories

"If you view on this single category page https://christianbusinessnetwork.com/resources/wisdom-at-work/categories/my-utmost-for-his-highest here, you will unable to click on that category title." YES, and I want that limitation applied to all main Category Page Titles. Hope that makes sense.
·
Monday, 29 January 2018 04:19
·
0 Likes
·
0 Votes
·
0 Comments
·
Try apply this following CSS and see how it goes.


body #eb.eb-view-categories.eb-layout-default .eb-categories .eb-category-name.reset-heading a {
pointer-events: none;
}

body #eb.eb-view-categories.eb-layout-default .eb-categories .eb-category-subs a {
pointer-events: none;
}

body #eb.eb-view-latest.eb-layout-default .eb-post-category a {
pointer-events: none;
}


Before you replace this css, you have to remove the existing css which i asked you added that css into custom css section.
·
Monday, 29 January 2018 10:37
·
0 Likes
·
0 Votes
·
0 Comments
·
This first line of Custom CSS was all I needed. Works great! THX!

body #eb.eb-view-categories.eb-layout-default .eb-categories .eb-category-name.reset-heading a {
pointer-events: none;
}
·
Monday, 29 January 2018 21:42
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Michael, glad that your issue is resolved now
·
Monday, 29 January 2018 21:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Glad to hear that your issue has been resolved now.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.
·
Monday, 29 January 2018 21:43
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post