dzung
Forum Replies Created
-
Forum: Plugins
In reply to: [Table of Contents Plus] TOC doesn’t works on homepageI’m having the same issue. Have you found a solution to fix this yet?
- This reply was modified 7 years, 10 months ago by dzung.
Forum: Plugins
In reply to: [Advanced Editor Tools] How do I change default font?TinyMCE team, can you please help me?
Hi Steve, I still don’t know what to do so I have posted a question on stackoverflow about this. Thanks for your kind help.
Hi Steve, I’m still not clear what to do.
Can you please give some more guide or point me to some resources where I can read more/ learn more about this? Thanks for your help!
Forum: Fixing WordPress
In reply to: How do I change the display URL on browser of my website?I see other websites showing “https://theirsite.com” and “www.theirsite.com” on my browsers (Chrome/Firefox). But the “www or http://” isn’t showing for my site.
Some examples:
– Timeout.com is shown as “www.timeout.com” on my browser. If I Ctrl+A the URL, copy and paste it the value will be “http://www.timeout.com/”.
– ww.wp.xz.cn is shown as “https://ww.wp.xz.cn/” on my browser. If I Ctrl+A the URL, copy and paste it the value will be “https://ww.wp.xz.cn/”.
– Mysite.com is shown as “mysite.com” on my browser. If I Ctrl+A the URL, copy and paste it the value will be “http://mysite.com/”.For the “https://” I heard that the “s” is for security and I will have to pay my hosting provider if I want it. But currently I can’t afford yet.
I want to know how to have/ or if I can have the “http://” or “www.” showing on browsers for my website.
Forum: Fixing WordPress
In reply to: Randomly generated postsIt seems like your site got hacked or under attacked. Try delete that user again and update “your admin” user’s password to a very strong one.
Forum: Fixing WordPress
In reply to: Facebook comments display on all postsI have fixed the problem. It appeared because I used a static URL for the setting, now after I use get_permalink() to get a dynamic URL. It worked.
<div class="fb-comments" data-href="<?php echo get_permalink( $post->ID ); ?>" data-width="100%" data-numposts="50"></div>Forum: Fixing WordPress
In reply to: My website is hacked – They deleted all coding filesThanks, I have just restored my site again and talked with the hosting provider again – they said to delete the WordPress install there are only two ways via C-Panel or FTP – I have asked them to track any access to C-Panel or FTP for next few days. I will be waiting.
Forum: Fixing WordPress
In reply to: My website is hacked – They deleted all coding files@sidati Thanks for your reply and I’m checking the link.
Forum: Fixing WordPress
In reply to: Is there a way to create sub post or sub content to post?@swayam.tejwani I will check out $_GET . Didn’t know that we can do that with WP. Thanks.
Hi Neo, My website is running already. I have all content for a city and want to add other cities. I want to have home page for each city. When user visit a city – all content will be customized for that city these including : Homepage, Navigation URLs, Contents.
An example is Time Out. When we go to the homepage of Time Out for London – its URL and all of its content is for London : http://www.timeout.com/london when we go to Time Out for Chicago all for Chicago only : http://www.timeout.com/chicago
First you shouldn’t edit the plugin CSS. You should use your child theme’s css file to add custom css. It took me 1 hour to learn and create a child theme for my theme. First it seems complex then it’s quite easy but VERY useful. If you already use a child theme, it’s easier for other people to help you, to point you where to edit.
If you want to edit it right away you at least should edit it in your theme’s css file. But remember all your changes will be lost if you update the theme. Open style.css file in your wp-content/themes/THEME_NAME folder
And add your css code there, if it doesn’t work maybe be you need to add !important to make it works:
@media screen and (max-width: 680px) {
.su-pullquote {
display: none !important;}
}
`Forum: Fixing WordPress
In reply to: Select Media: How to limit the number of files being loaded?@neotechnomad : Thanks for your reply and you were right. It wasn’t the WP default media select button and popup. It’s the one prompted when I use Shortcode Ultimate plugin to create Gallery and use add media button to select images. The promted popup looks very similar to the WP default one, but it doesn’t filter anything and there is only one option to load media by month and media is auto pre-load as I described (Maybe the plugin changed the default config). Because I often use this plugin to create Gallery of Images so I thought it was WP.
I will re-post in Shortcode Ultimate forum.
Forum: Fixing WordPress
In reply to: Connection lost. Saving has been disabled until you’re reconnected.I have the same issue for a few times, and I am having it right now.
It shows: Connection lost. Saving has been disabled until you’re reconnected. We’re backing up this post in your browser, just in case.
I run WordPress: 4.3.1 on Localhost (WampServer) No special plugins, only SEO by Yoast, Advanced Custom Fields and Contact form 7.
Been searching for this a few days, after posting this I searched and founder new way for this. anyone wants to do this can do it like this: Tested
Put these code in your functions.php and start customize
/*
Yoast SEO Meta Description Hook
*/
function custom_seo_title( $site_title ) {
return “Custom title”;
}
function custom_seo_description( $site_description ) {
return “Custom description!”;
}
add_filter( ‘wpseo_title’, ‘custom_seo_title’, 10, 1 );
add_filter( ‘wpseo_metadesc’, ‘custom_seo_description’, 10, 1 );
/*End Yoast*/