Title: jspada's Replies | WordPress.org

---

# jspada

  [  ](https://wordpress.org/support/users/jspada/)

 *   [Profile](https://wordpress.org/support/users/jspada/)
 *   [Topics Started](https://wordpress.org/support/users/jspada/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jspada/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jspada/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jspada/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jspada/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jspada/favorites/)

 Search replies:

## Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Checkout Field Manager (Checkout Manager) for WooCommerce] Billing fields not hidden when 2 or more virtual products](https://wordpress.org/support/topic/billing-fields-not-hidden-when-2-or-more-virtual-products/)
 *  [jspada](https://wordpress.org/support/users/jspada/)
 * (@jspada)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/billing-fields-not-hidden-when-2-or-more-virtual-products/#post-8797300)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page scroll to id] Highlight class not added while using Mobile detection plugins](https://wordpress.org/support/topic/highlight-class-not-added-while-using-mobile-detection-plugins/)
 *  Thread Starter [jspada](https://wordpress.org/support/users/jspada/)
 * (@jspada)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/highlight-class-not-added-while-using-mobile-detection-plugins/#post-8231768)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Page scroll to id] Highlight class not added while using Mobile detection plugins](https://wordpress.org/support/topic/highlight-class-not-added-while-using-mobile-detection-plugins/)
 *  Thread Starter [jspada](https://wordpress.org/support/users/jspada/)
 * (@jspada)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/highlight-class-not-added-while-using-mobile-detection-plugins/#post-8227751)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Jump Menu] Jump Menu select position on front end](https://wordpress.org/support/topic/jump-menu-select-position-on-front-end/)
 *  Thread Starter [jspada](https://wordpress.org/support/users/jspada/)
 * (@jspada)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/jump-menu-select-position-on-front-end/#post-5918601)
 * Hi 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 alignment](https://i-women.org/images/jumpmenu-alignment.png)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme My Login] Disable "Your Profile" page from loading for Admin](https://wordpress.org/support/topic/disable-your-profile-page-from-loading-for-admin/)
 *  [jspada](https://wordpress.org/support/users/jspada/)
 * (@jspada)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/disable-your-profile-page-from-loading-for-admin/#post-4066469)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme My Login] Disable "Your Profile" page from loading for Admin](https://wordpress.org/support/topic/disable-your-profile-page-from-loading-for-admin/)
 *  [jspada](https://wordpress.org/support/users/jspada/)
 * (@jspada)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/disable-your-profile-page-from-loading-for-admin/#post-4066468)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Publication Archive] Disable Link in Title](https://wordpress.org/support/topic/disable-link-in-title/)
 *  [jspada](https://wordpress.org/support/users/jspada/)
 * (@jspada)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/disable-link-in-title/#post-4485401)
 * Ive 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Publication Archive] Disable Link in Title](https://wordpress.org/support/topic/disable-link-in-title/)
 *  [jspada](https://wordpress.org/support/users/jspada/)
 * (@jspada)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/disable-link-in-title/#post-4485400)
 * I 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.

Viewing 8 replies - 1 through 8 (of 8 total)