JosephNC
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I get rid of the EDD Checkout on MenuHi Anita Shaw,
1. Login to your WordPress Dashboard.
2. From the ‘Appearance’ menu on the left-hand side of your Dashboard, select the ‘Menus’ option to bring up the Menu Editor.
3. Locate the menu item that you want to remove in the menu editor window.(in our case it’s the checkout)
4. Click on the arrow icon in the top right-hand corner of the menu item/box to expand it.
5. Click on the Remove link. The menu item/box will be immediately removed.
6. Click the Save Menu button to save your changes.Cheers.
Forum: Fixing WordPress
In reply to: How do I get rid of the EDD Checkout on MenuHi Anita Shaw,
1. Login to your WordPress Dashboard.
2. From the ‘Appearance’ menu on the left-hand side of your Dashboard, select the ‘Menus’ option to bring up the Menu Editor.
3. Locate the menu item that you want to remove in the menu editor window.(in our case it’s the checkout)
4. Click on the arrow icon in the top right-hand corner of the menu item/box to expand it.
5. Click on the Remove link. The menu item/box will be immediately removed.
6. Click the Save Menu button to save your changes.Cheers.
Forum: Fixing WordPress
In reply to: Why is media file size is now maximum 2MBHi JoLynn216,
What error message did you get?
Forum: Fixing WordPress
In reply to: Hide Navigation menu from mobile browserHi inirav88,
Put it in your styles.css
Forum: Fixing WordPress
In reply to: wp job managerHi abu wakkas,
I don’t get you. Do you mean the url for the category icon is visible? If yes, deactivate Category Icon plugin and see if the problem persist.
Cheers.
Hi Kimberley Hoffman,
Try another theme, probably the default twentysixteen theme for us to know where the problem is coming from.
Thanks.
Forum: Fixing WordPress
In reply to: Switch over from wordpress.comHi jklmd2002,
Check moving to a self hosted wordpress site. I guess that’s what you’re looking for.
Cheers.
Forum: Fixing WordPress
In reply to: Cant seem to reduce database size furtherHi kaitanium,
Are your photos saved in the database or wp-content/uploads folder?
Forum: Fixing WordPress
In reply to: How to find same text as in tags inside the post contentHi Nathan Nawbi,
Add this to your function.php file in your template directory
function ncej_special_content( $id, $content ) { $tags = get_the_tags( $id ); if ( $tags ) { foreach ( $tags as $tag ) { $old_tags[] = $tag->name; $new_tags[] = '<span class="special-tag">' . $tag->name . '</span>'; } $content = apply_filters( 'the_content', $content ); // Do the replacing $content = str_replace( $old_tags, $new_tags, $content ); $content = str_replace( ']]>', ']]> ;', $content ); echo $content; } else { $content = apply_filters( 'the_content', $content ); // Do the replacing $content = str_replace( ']]>', ']]> ;', $content ); echo $content; } }
Now do the loop like this
<?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); ?> // other query here e.g the_title() and so on. // instead of using the_content() use ncej_special_content() ncej_special_content( get_the_ID(), get_the_content() ); <?php endwhile; ?> <?php endif; ?>
You can go ahead and style the class “special-tag” the way you like.
I hope this helps.
Cheers.
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function wp_removable_query_args()Glad it works MsingAste.
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function wp_removable_query_args()If you have access to the ftp, you can re-install wordpress.
If the problem persist after the re-installation, i will advise you to downgrade your wordpress software for the meantime until we fix this issue.
Thanks.
Forum: Fixing WordPress
In reply to: Can't Access SiteHi vajra727,
You should create a topic on this, probably it will help someone next time.
To go straight to the point you have to deactivate some plugins like wp-super-cache & tectite-forms. Since you can’t access your site directly, if you have access to the ftp then simply remove those plugins.
Cheers.
Forum: Fixing WordPress
In reply to: Can't Access SiteHi njsanec,
I did a check on your domain https://www.myfriendinhr.com but it seems you are not pointing the domain to your host.
Kindly check the short review of your domain. and see for yourself.
I think your domain has not been verified fully.
Call +1 866-964-2867
HostGator, Customer service or visit their support portalGlad i helped. Cheers.
Forum: Hacks
In reply to: Import users from non-wordpress databaseHi iamdanieljs,
If your bookingsystem columns format are exactly like wp_users columns, it will be easier to migrate the data to wp_users table with some plugin; otherwise, it won’t be easy.
If you can explain in full detail here; i will help you.
Or, you can post this issue in WP Jobs Section and get a WP expert to do it.
Cheers.
Forum: Fixing WordPress
In reply to: Redirecting subdomain URLs post migrationAdd this to your htaccess file
RewriteEngine On RewriteCond %{HTTP_HOST} ^blog\.domain\.com$ [NC] RewriteRule ^https://domain.com/blog [NC,R=301]