padsle
Forum Replies Created
-
Hi,
I have exactly the same error but it only occurs on my home page when using Internet Explorer (IE 11). It works perfectly on firefox, chrome and all pages in IE except for the home page. The site is https://www.streetdoctors.org. I just updated to WordPress 4.4 but this hasn’t made any difference. Do you think this is a conflict issue as with the example above?
Thanks for your help.
Forum: Fixing WordPress
In reply to: All text turned to hyperlinksHi again,
I’ve managed to fix the problem by mistake. I had chosen to have an A-Z list of pages in the sidebar rather than a navigation tab menu in the header. When I changed the header setting to have the standard navigation tabs, and removed the A-Z page listing widget from the sidebar the random hyperlinks all disappeared.
I’m assuming this is what fixed the issue, so hope this is of use if anyone else comes across a similar problem.
Forum: Plugins
In reply to: [Notifications] Scrolling notificationsThanks for the suggestion. I’m new to coding – should I be in the notifications/notifications.php and should I replace the section below with the code you’ve noted above, or should I add the new code, keeping the below?
Thanks,
/** * Notification message * @since 1.0 * @uses get_posts * @author Chris Reynolds * returns the most recent notification */ function notf_message() { $args = array( 'post_type' => 'notf_notifications', 'posts_per_page' => 1, ); $notifications = get_posts( $args ); foreach ( $notifications as $notification ) { $notf_id = $notification->ID; $message = get_the_title( $notf_id ); } if ( $notifications ) { return $message; } }
Forum: Fixing WordPress
In reply to: All text turned to hyperlinksThe site is on a localhost so I can’t send you a link unfortunately.
Here is a list of the plugins on the site in case you know if any of these are known to cause issues:
Active Directory Integration
Font
Formidable
Notifications
Page Restrict
Select Push Monkey Native Desktop Push Notifications for WordPress
Select Share Buttons by AddToAny
SP Project & Document Manager
User Specific Content
WP-UserOnline
WP Favorite PostsOtherwise are there are generic things I should look for? Eg, specific bits of code in the CSS files relating to the theme?
Thanks,