yuenmb
Forum Replies Created
-
Forum: Themes and Templates
In reply to: facebook and other links hiddenI solved this problem myself also. The reasons for both problem are the same. I set the color to match the background color, i.e. white. Once I set it to the different color like dark. the hidden icons come up. How stupid I am!
Forum: Themes and Templates
In reply to: facebook and other links hiddenI solved the second problem myself. Only the first problem left, which is facebook lost from the home page. Thanks for anyone that help.
Forum: Plugins
In reply to: [Event Registration] Popup Maker setting overwrites Event RegistrationNo, it doesn’t work either with IE. Apparently both plugins cannot coexist in Chrome and IE!
Forum: Plugins
In reply to: [Event Registration] Popup Maker setting overwrites Event RegistrationDoes it happen to all popup or only popup maker? If I changed to WP Popup plugin, will there be the same problem overlapping setting and others. Also, will the problem happened to IE as well. I used to use Chrome to configure the domain and reluctantly change it to IE or other browser because of this minor bugs. Thanks.
Forum: Plugins
In reply to: [WP Easy Columns] image and text in a columnand how to insert images in a column if possible?
Forum: Themes and Templates
In reply to: child theme issueipage does not support Chinese Characters. After changing all Chinese characters into English characters. It worked.
Forum: Plugins
In reply to: Slider not work after WordPressThis case is resolved
Forum: Fixing WordPress
In reply to: Internal Server ErrorThanks again. Have a nice day
Forum: Fixing WordPress
In reply to: Internal Server ErrorIt worked great. Thanks so much for your help. It solved my problem and I learnt something too.
Forum: Themes and Templates
In reply to: child theme issueI have some page with title in Chinese characters. I created them and preview with no problem. However, after I published I view it again, I get error message:
Bad Request
Your browser sent a request that this server could not understand.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.My theme is Magazine Basic. I have a child theme but with nothing in it.
it showed
https://www.yesmlv.com/%E4%BF%9D%E9%9A%AA/
when I copied here.However when I saw it, it is in Chinese Character clearly
https://www.yesmlv.com/保險/Please let me know why the code screwed up after published and posted here. Thanks.
Forum: Themes and Templates
In reply to: child theme issueI found there is also an ie.css in the theme. So in addition to the style.css, I should add this into the functions.php:
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘twentytwelve-ie’, get_template_directory_uri() . ‘/css/ie.css’, array( ‘twentytwelve-style’ ), ‘20121010’ );
$wp_styles->add_data( ‘twentytwelve-ie’, ‘conditional’, ‘lt IE 9’ );}
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );}
Does the above statement work?
Forum: Themes and Templates
In reply to: child theme issueIn fact, I did read the url you showed me. My questions are:
What are the main ccs, only style.css? I don’t have main.css, ie.css, in this 2012. What about the editor-rtl.css, rtl.css in 2012? Are these .css not necessary?
If I just add style.css now, can I add those other .css later, and won’t cause any problem?Thanks in advance.
Forum: Themes and Templates
In reply to: child theme issueI like to start over again. So, I need to create a child theme. In that directory, I should create an empty style.css (only? first?) There are more than one .css files in 2012, namely editor-style-rtl.css, editor-rtl.css, rtl.css and style.css. Do I need to create a new functions.php and have all these .css files in the functions.php together with style.css? If so, do you have examples, for others like rtl.css in addition to the style.css? Thanks again.
Forum: Themes and Templates
In reply to: child theme issueThanks. I will try to follow your advice.
Forum: Themes and Templates
In reply to: child theme issueIn other words, I must add child theme to a new website using any theme before I start to modify and add data etc, no matter whether I will modify the child theme later or not, but just in case. Is that true? If I build a new website, should I use a style.css and functions.php, both of them in child theme?