ikaring
Forum Replies Created
-
I think you need to check template file for the page.
It might be a template-blog.php or some sort (just a guess).You can override css like:
.page-template-template-blog img.thumbnail { width: 100px; height: 100px; }Since body tag of the blog page has following classes, you can specify css rules only for blog template as above.
page page-id-152 page-template page-template-template-blog page-template-template-blog-php safari alt-style-default one-col width-960 one-col-960 full-width full-header full-footer full-sliderForum: Themes and Templates
In reply to: Unable to remove theme widgetsI see.
You need to customize a template file.
That is custom_home.php located in /wp-content/themes/formation/page-templates/
Or you can duplicate the file to make another custom template file.http://codex.wordpress.org/Page_Templates#Custom_Page_Template
It is recommended to make child theme for editing theme, unless all the changes you make will be lost after theme update.
Forum: Themes and Templates
In reply to: Unable to remove theme widgetsHave you checked Appearance -> Customize?
There might be those settings.Forum: Fixing WordPress
In reply to: Adding outside store to wordpress themeCongratulation! Happy to hear that.
I do this for my study and training on WordPress and English, so never mind.
It is fun communicating with someone abroad.
Thanks for your proposal, though.
( I think it might violate the forum rule if I get any reward. It’s just voluntary thing. )Forum: Fixing WordPress
In reply to: Adding outside store to wordpress themeIt seems some javascript changes the url of youtube.
In HTML source, it’shttps://www.youtube.com/sespider, but rendered url ishttps://www.youtube.com/embed/sespider.YouTube Channel plugin looks suspicious to me. Pls try disable this plugin or change some settings of it.
Forum: Fixing WordPress
In reply to: Adding outside store to wordpress themeThat’s odd..
Did you changed the url?
In my test environment, both urls works fine, and opened in new tab.Forum: Fixing WordPress
In reply to: Adding outside store to wordpress themeI think your link url should be following.
https://www.youtube.com/watch?v=fSoSipSFPGA&list=PLn9N9jhgkJ3L6Ud_4FSZcb-xSoExmiUIe&index=1
or
https://www.youtube.com/playlist?list=PLn9N9jhgkJ3L6Ud_4FSZcb-xSoExmiUIeTo open link in a new tab/window:
On right top in menu settings page, there should be “Display Option” button or somekind ( I don’t know english label cos I use Japanese ).
Click that and panel expands. Check “Link target” ( I guess.. ).
Now there is a checkbox in your YOUTUBE menu item section.BTW, nice drawings!
Forum: Fixing WordPress
In reply to: Adding outside store to wordpress themeNo problem at all!
You don’t need to worry about theme related menus. They are handled by header.php of the theme according to the section settings.
Just fill in “Menu Name” and click “Create Menu”.
Now you can add menu items and there should be checkbox on bottom of right column.
Check “Home Page Header Menu” there and save menu.Forum: Fixing WordPress
In reply to: Adding outside store to wordpress themeIn that case, it is better using shortcode. Add the following code to functions.php of the theme.
function my_rb_js_handler($atts, $content=null) { $str=<<<eot <script type="text/javascript" src="http://www.redbubble.com/assets/external_portfolio.js"></script> <script id="rb-xzfcxvzx" type="text/javascript">new RBExternalPortfolio('www.redbubble.com', 'sespider', 3, 3).renderIframe();</script> eot; return $str; } add_shortcode('rb', 'my_rb_js_handler');You can put
[rb]anywhere in section and that’s it.Why I recommend child theme is that above shortcode in functions.php will be deleted after theme update.
Child theme setup is not that difficult, so read the codex and just put above code in functions.php of the child theme.
http://codex.wordpress.org/Child_ThemesAbout main nav bar:
You can add menu items only after sections links. In menu settings page, select your menu and check theme location as Home Page Header Menu.Forum: Fixing WordPress
In reply to: Adding outside store to wordpress themeI think you need to modify index.php of Onetone theme.
Before that, could you specify which section you want to add the store items?
There are Section1 to 6 in Onetone Options page of admin panel.
And is it before the section content or after?It is recommended to make child theme, and duplicate index.php to the child theme and edit it.
Forum: Fixing WordPress
In reply to: adding child categories kills my if (in category)If you pass multiple categories, you should set array as the parameter.
<?php if ( in_category( array( 5,14 ) ) ) { ?>Also, post_is_in_descendant_category function accepts only array as first parameter.
Forum: Plugins
In reply to: [MW WP Form] BR tags are deletedSorry, it seems WordPress core feature…
Not because of this plugin.
Please ignore this post.
Thank you for the great plugin.Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Timeout? backing up to DropboxThank you Caspar.
It seems like a limitation of shared server.
I’ll ask them if it could be changed.“Restart on archive creation” has not changed much in my environment.
Thanks again!
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Timeout? backing up to DropboxThanks Casper.
Here is a log.
http://pastebin.com/1hgavvppI have tested archive of about 48MB, and it was successful, only once though.
Also, excluding uploads folder went fine. (archive size was 1.5mb)