jspada
Forum Replies Created
-
Did you ever find a solution to this?
I actually found that my hidden settings didn’t work as soon as I added 2 or more products of any type.
I really need these hidden settings to work as expected.Thank you! That was it.
I thought I had changed all references to ‘portfolio’ in the theme but I had missed the parallax.js file.Issue resolved.
Thank you for your prompt assistance.
Thank you for your reply.
‘Force single highlight’ is now disabled and the issue persists.
Let me know what else I can try.
Thank you.
Forum: Plugins
In reply to: [WP Jump Menu] Jump Menu select position on front endHi jkrill,
Thank you for your reply.
I dont believe there is a lot in my admin bar but maybe this is pushing it. Besides, the field aligns right in the dashboard and the dashboard admin bar and frontend admin bar have the same number of items to the left.
Here is a screenshot.
jump menu alignmentI was hoping for the sake of the users that manage this I would be able to keep the title but I tried it anyway.
Removing the title does not fix the problem.Forum: Plugins
In reply to: [Theme My Login] Disable "Your Profile" page from loading for AdminForum: Plugins
In reply to: [Theme My Login] Disable "Your Profile" page from loading for AdminI know this topic is old but it is the most recent one I can find for this issue.
The solution here does not solve the problem for me.
I have Administrator unchecked for themed profiles and also under user links I have the administrator profile link set to mysite.com/wp-admin/profile.php.
However going to my profile from the front end still brings me to the themed profile on the front end and I still get the error at the bottom of the page for admin.
I noticed that this has been a problem for some time now, topics go back for years. Has anyone, plugin author, anyone, figured this out yet?
Any help would be greatly appreciated.
Forum: Plugins
In reply to: [WP Publication Archive] Disable Link in TitleIve continued to work on this on my own. Im surprised that more people havent been looking for a solution to this. Here is a solution that I worked out that works for me.
In your template.wppa_publication_list.php file in your theme, replace:
<?php $pub->the_title(); ?>
with:
<?php ob_start(); var_export($pub->the_title(), true); $nolinktitle = ob_get_clean(); echo strip_tags($nolinktitle, '<div>'); ?>
This captures the output of $pub->the_title, turns it to a string, and then strips all html tags, in our case the anchor link, and leaves div tags so we can keep the
<div class="publication_title">
container.Hope this helps someone.
Forum: Plugins
In reply to: [WP Publication Archive] Disable Link in TitleI too need this. I just want the list of publications to have the ‘View’ & ‘Download’ links and not have the title link to a single page view.
I have found that I can create a template.wppa_publication_list.php file in my theme and modify how the shortcode outputs the list of publications but the title is wrapped in a link to the permalink to that publication.
I have also found the wpa-title filter but it too seems to only filter the text of the title and not the whole title output which includes the link markup.
Has anyone managed to figure this out before?
Any assistance would be greatly appreciated.
Thank you.