helldog2018
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: text and colours offThen this might solve your issue: https://wp-mix.com/font-smoothing-chrome-firefox/
Forum: Fixing WordPress
In reply to: text and colours offhi @wordpressrun,
You didn’t share a link to your website, but the first thing that pops in my mind is an overlay with transparency.
If you have a darker (say grey or black) with transparency set, the background (including text) will look slightly different and blurry.Let me know if this solves the issue.
Forum: Fixing WordPress
In reply to: Adding icons before entry titles?Hi @lasscassidy,
I don’t know if you tried any other plug-ins, if not, this might be a good solution for you: Easy category Icons
But using ACF to add icons in front of your title is probably the best way to go and needs some customization.
Forum: Fixing WordPress
In reply to: Visual editor stripping certain linkHi @clintemsley,
It seems TinyMCE is doing this out of security reasons.
Take a look at the following Guide, you can probably find your answer here.Let me know if this fixed your issue.
Forum: Fixing WordPress
In reply to: Change Title Tag for Categories in HeadHi @karyls,
Open up your header.php in theme folder and find something like
<title><?php wp_title( '' ); ?></title>You can alter the code like:
<title> <?php if ( is_category( 'Shrubs' ) ) echo 'Garden Shrubs for Sale'; ?> <?php if ( is_category( 'Trees' ) ) echo 'Trees for Sale'; ?> <?php wp_title( '' ); ?> </title>Let me know if this solved your issue.
- This reply was modified 8 years, 1 month ago by helldog2018.
Forum: Fixing WordPress
In reply to: Database errorHi @wijihatmoko,
This is probably a problem with your wp_options table.
Please make a backup of all your files first before continuing.1. Make back-up.
2. Go to your phpmyadmin
3. Fill in the commandREPAIR TABLE wp_optionsIf that does not work try
REPAIR TABLE wp_options EXTENDED
OrREPAIR TABLE wp_options USE_FRMLet us know if this fixed your issue.
Forum: Fixing WordPress
In reply to: Post editing page not working, java errorsHi @jcnordyke,
Thanks for letting us know, indeed always keep your theme and plugins updated.
Hope updating your theme solves the issue.EDIT: I checked OptimizePress website, this should solve your issue according to their post.
- This reply was modified 8 years, 1 month ago by helldog2018. Reason: Added OptimizePress post about issue
Forum: Fixing WordPress
In reply to: Post editing page not working, java errorsHi @jdnordyke,
Well there are two ways you can include a library.
1. With a plug-in.
2. Enqueue a script in functions (this is probably the best way to go as you would like to reduce plug-ins as much as possible).1. The plug-in ‘Use Google Libraries‘ can be used.
2. To enqueue an external script you first need to de-register the official script being used by WordPress (it’s probably not there, but just to be sure), and then register the new external script. Just add the following code in functions.php of your theme.
// include custom jQuery function Optimizepress_include_custom_jquery() { wp_deregister_script('jquery'); wp_enqueue_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js', array(), null, true); } add_action('wp_enqueue_scripts', 'Optimizepress_include_custom_jquery');Let me know if it solved your issue.
Forum: Fixing WordPress
In reply to: Page loading time too long xmlrpc.phpHi @andisman,
Yeah WP Super Cache definately isn’t a bad caching plugin, but for some themes it is not compatible.
Three Caching plugins with their pro’s and cons:
- WP Super Cache Pro’s
- Easy to install and configure
- Support for content delivery network
- It’s free
- WP Super Cache cons
- A few issues with compatibility (themes, other plugins etc) have been reported by some users
- If a user is logged in, they won’t experience supercaching
- W3 Total Cache pro’s
- Supports CDN, minification and gzip
- Vast customization options – 16 pages worth
- W3 Total Cache cons
- So many customization options could be a little daunting for some
- WP Rocket Pro’s
- One of the fastest on the market
- Excellent tech support available
- WP Rocket cons
- Does cost between $39 – $199,- to install
- Limited advanced options
Hope this helps a bit.
- This reply was modified 8 years, 1 month ago by helldog2018.
Forum: Fixing WordPress
In reply to: Page loading time too long xmlrpc.phpNot all caching plug-ins are good.
I have no idea which caching plug-in you are using.Forum: Fixing WordPress
In reply to: Post editing page not working, java errorsHi @jcnordyke,
Have you tested disabling your theme and test it on a standard theme of WordPress?
The JavaScript library has been removed and might be needed adding manually in your theme.Forum: Fixing WordPress
In reply to: Page loading time too long xmlrpc.phpThere are a multitude of things you can do
- Smush images and/or compress them
- Keep your WordPress installation updated to the latest version (this also means your plug-ins and themes
- If you are using blog archives, use excerpts instead of full posts
- If your single posts are having comments (lots of comments), split them into pages
- Use a Content Delivery Network (CDN)
- Optimize your database
- Use a theme optimized for speed
- Disable hotlinking and leeching of your content
These are just a few steps you can take to fasten your WordPress website.
Good luck!Forum: Fixing WordPress
In reply to: is there any plugin that require people Donate before download?I believe a plug-in like Pay Per View can do something like this as well.
https://premium.wpmudev.org/project/pay-per-view/Forum: Fixing WordPress
In reply to: SSL not workingHi @pzmarketing,
If you want to be sure you might want to alter the siteurl directly inside your database and remove it from wp-config.php
Here is how you alter de url’s inside your database:
- Backup your database and save the copy off-site.
- Login to phpMyAdmin
- Click the link to your Databases.
- A list of your databases will appear. Choose the one that is your WordPress database.
- All the tables in your database will appear on the screen.
- From the list, look for wp_options. Note: The table prefix of wp_ may be different if you changed it when installing.
- Click on the small icon indicated as Browse.
- A screen will open with a list of the fields within the wp_options table.
- Under the field option_name, scroll down and look for siteurl.
- Click the Edit Field icon which usually is found at the far left at the beginning of the row.
- The Edit Field window will appear.
- In the input box for option_value, carefully change the URL information to the new address.
- Verify this is correct and click Go to save the information.
- You should be returned to your wp_options table.
- Look for the home field in the table and click Edit Field. Note There are several pages of tables inside wp_options. Look for the > symbol to page through them.
- In the input box for option_value, carefully change the URL information to the new address.
- Verify this is correct and click Go to save the information.
- This reply was modified 8 years, 1 month ago by helldog2018.
Forum: Fixing WordPress
In reply to: server’s configurationHi @babscharlly,
If you enable WP_DEBUG in wp-config.php does it show you any messages on both front-end and back-end of your website?