codeManiac
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website is redirecting to a different siteHi again kelemvor !
That’s possibly a cache problem. Can you empty firefox cache and try again ? π
Forum: Fixing WordPress
In reply to: Website is redirecting to a different siteExactly. And it was the post url. Every post is saved in the database with the url associated and the url includes the domain name π
Good luck with the new domain name kelemvor ! let me know if you need any more help
Cheers !
Forum: Fixing WordPress
In reply to: Website is redirecting to a different siteHi again !
Can you please run the following query in your database ?
UPDATE wp_posts SET post_content = REPLACE(post_content, 'www.agapechurchwi.com', 'www.diokolife.com');Let me know if it solves the prob, if not will happily provide more help π
Cheers
Forum: Fixing WordPress
In reply to: Plugin for overall translationHi cornelisdigitaal !
I’d suggest using wpml but you must keep in mind the 2nd part of the problem depends on how compatible the theme you are using is and if it has all translations needed.
Cheers !
Forum: Fixing WordPress
In reply to: After Server move – \r\n in every contentHi Michael !
if it’s a charset problem, it can be solved by adding :
define('DB_CHARSET', 'utf8'); /** The Database Collate type. Don't change this if in doubt. */ define('DB_COLLATE', '');I hope this help π if it doesn’t, please submit your website url to be able to directly see the problem.
cheers !
Forum: Fixing WordPress
In reply to: Website is redirecting to a different siteHi kelemvor !
You already did great job with transferring your website alone π
You just missed a lil detail here. You keep being redirected because in the database you imported, your old url is still there. The solution is to :
– login to your database using PhpMyadmin or from CPanel.
– under the table “wp_options” ( The table prefix of wp_ may be different if you changed it when installing. ), you will see a field called “option_name”, scroll down and look for “siteurl”. There you will find your old website url which must be replaced with the new one.I hope this helps π
Cheers !
Forum: Fixing WordPress
In reply to: How to remove Featured image?Hi lukapetko !
Can you please paste a link to the website where you have the featured image sat up ?
Usually featured images can be removed by opening the page where the image is, at the right column in the bottom you will see it showing the featured image. Click remove and it will be done.
If this doesn’t work please provide a link so I can help you further π
Cheers !
Forum: Themes and Templates
In reply to: Change menu font color in flat-bootstrap themeHi webmommy !
Nice website !
You are having these problems because the theme, like its name says, uses bootstrap framework. In order to solve your problem use the following elements with the following properties :
.navbar-inverse .navbar-nav > li > a { color: #111; }.navbar-inverse .navbar-nav>li>a:hover, .navbar-inverse .navbar-nav>li>a:focus { color: #E4E4E4; }ofc feel free to use the colors that you want instead of those I pasted here.
Oh yeah and if this works, I get a free trial of the software :p ( joking ofc )
Cheers !
Forum: Themes and Templates
In reply to: Reduce requestsYou are welcome π Feel free to ask whenever you need anything π
Forum: Themes and Templates
In reply to: Reduce requestsGlad to help you Klaymen !
There are many ways. Here are some of them:
1- You can install wp-super-cash
When fully configured , it will be of great help
2- You can use cloudflare
3- Enable compression of images and css/js files by adding the following to your .htaccess
AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType DEFLATE text/css AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE application/rss+xml AddOutputFilterByType DEFLATE application/javascript AddOutputFilterByType DEFLATE application/x-javascriptThere many articles about that online, maybe googling them would be better than mentioning them here .
I hope this helped π
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Not recognizing all custom CSS stylesok here is my solution for
1- Remove underlines on links and change links color:
if its the links inside posts :
.entry-content a, .entry-summary a, .taxonomy-description a, .comment-content a, .pingback .comment-body>a { border-bottom:none !important; color: steelblue !important; }2- Size of post header :
.entry-title a { font-size:20px; }ofc replace 20px with the value you think it’s good for you.
3- buttons colors:
button, input[type="button"], input[type="reset"], input[type="submit"]{ background: #368; }replace #368 with the color you want
For the borders , which ones you want to change ? The borders of the widgets π
Forum: Themes and Templates
In reply to: Reduce requestsHi Klaymen !
Yes this will cause problems. These files are a part of the core files that come with WordPress. Just keep in mind that website GtMetrix make automated scans of your website and they can’t be aware of which files are core files and which are not.
Cheers !
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Not recognizing all custom CSS stylesHi Sharon !
I hope you are doing fine. No I don’t think it’s a common problem. It’s maybe some of the CSS elements have the value “!important” assigned to them or maybe you didn’t target the right element in your CSS.
Maybe you can paste your website so I can help you with a precise and fast solution?
Forum: Themes and Templates
In reply to: Error message when trying to get New ThemeHi tmollai !
This happens sometimes when you have bandwidth problem ( maybe a bit slow ? ) or wordpress.org servers are having too much traffic? anyway I had that problem many times and it never lasted.
Here is a quick solution : use your browser to go to the theme you want to use and download it. It will be a .zip file. Then simply in your website go to themes and upload the .zip file and install it :).
Let me know how it goes
Cheers !
Forum: Themes and Templates
In reply to: Space between posts, space between images and Titles.Hi Slamer !
Yes you can just go to your style.css file and add the following to the end
.archive .entry-title, .blog .entry-title, .search .entry-title { margin-top:30px; }That code is for the space between the image and title.You can change the “30px” value to a value that looks perfect to you
Now the space between the posts:
.archive article, .blog article, .search article { margin-right: 10px; }Note that this will affect the number of posts appearing per line.
J’espΓ¨re que Γ§a a rΓ©solu vos problΓ¨mes π π