JosephNC
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I want to remove 'Permalink' option from comment section of my blogHi dave,
What theme are you using?
Forum: Fixing WordPress
In reply to: class-wp-error.php errorForum: Fixing WordPress
In reply to: class-wp-error.php errorHi PhillieG,
You can go ahead with the reinstallation and remember to backup.
Forum: Fixing WordPress
In reply to: Cant seem to reduce database size furtherGlad you figured it out. This will certainly help others.
Forum: Fixing WordPress
In reply to: Cant seem to reduce database size furtherHi kaitanium,
Do you have a plugin that stores large amount of data in the database?
That could be the problem.
Forum: Hacks
In reply to: Automatic "Read more" except for one categoryHi ososoba,
Make a duplicate from your category.php or archive.php if no category.php. Rename the duplicate to “category-social.php” and use
the_content()
in your loop.That’s all!
Forum: Fixing WordPress
In reply to: Redirecting subdomain URLs post migrationHi hpb1980,
Sorry for the late reply.
That code works for me. You can use Redirection plugin.
I don’t want you to make mistake in your .htaccess, a small mistake in your .htaccess code can make your WordPress site inaccessible, and it may start showing Internal Server Error.
Thanks.
Forum: Hacks
In reply to: Automatic "Read more" except for one categoryHi ososoba,
Try this code
Add this to your function.php file
function ncej_excerpt_length() { return 40; } function ncej_excerpt_more() { return '...'; } function ncej_excerpt() { add_filter('excerpt_length', 'ncej_excerpt_length'); add_filter('excerpt_more', 'ncej_excerpt_more'); $content = get_the_excerpt(); $content = apply_filters('wptexturize', $content); apply_filters('convert_chars', $content); echo $content; }
Now use this in your loop
if (have_posts()) { while (have_posts()) { the_post; ncej_excerpt(); } if (!is_single() && strlen(get_the_content()) > 0 ) { // your readmore link goes here. } }
Cheers.
Forum: Fixing WordPress
In reply to: Cant seem to reduce database size furtherHi kaitanium,
Use Better Delete Revision Manager. This would help. Let’s take for example, you have 200 posts and each post has 30 revisions; that means you are storing 6000 copies of data for just 200 posts in your database. Deleting the revisions will help.
Cheers.
Forum: Fixing WordPress
In reply to: Problem with button on coming soon pageHi ayushsrivastava,
I have checked the website and i think the Write and get paid page has the same content with the homepage or you did not use the right link.
Try confirming.
Forum: Fixing WordPress
In reply to: Cant seem to reduce database size furtherHi kaitanium,
Your host is probably complaining about your disk usage.
You can use EWWW Image Optimizer Or WP Smush
Thanks.
Lastly, I have custom WebFonts (DSari). No matter what theme I place them in, DSari ExtraLight just comes up as ‘bold’ or ‘strong’. I cannot override it. (I actually tried to in the first theme, but to no avail). The other DSari font styles work. What is going on here?
Perharps the font is suppose to be bold as (default) or you are not importing the right font.
If you have anymore question, i will be waiting.
Cheers.
I do need the following information:
My landing page is to be called home and not the standard wp-index page…it will be a static page. How can I accomplish this?You can accomplish this by following the procedure below:
There are two steps to creating a static front page on your site with WordPress.
1.Assign the Static Front Page (in this case your HOME page).
2.Assign the Posts Page (in this case your BLOG page) #This will hold the default wp index and note don’t assign any content in this page, it will be ignored. Only the page title will be used.
At this stage, i assume you have created and published those pages you want to use.
Now go to Administration > Settings > Reading panel.
*. Set Front page displays to a static page
1. In the drop down menu for Front Page select the static “{front page to use}”
2. In the drop down menu for Posts page select the new post page “i.e Blog” or the name you created, or leave it blank if you will not feature posts on the site.
3. Save changes.
And that’s all.
Forum: Fixing WordPress
In reply to: class-wp-error.php errorTry replacing class-wp-admin-bar.php with a new one.
Forum: Fixing WordPress
In reply to: How to find same text as in tags inside the post contentGlad it works.