bsapaka
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to get localhost login infothankyou
Forum: Fixing WordPress
In reply to: html code inside php fileresolved
Forum: Fixing WordPress
In reply to: html code inside php fileah yes!
That fixed it.
Thank you!
Forum: Fixing WordPress
In reply to: html code inside php filedoes that affect whtether or not my html works?
Forum: Fixing WordPress
In reply to: html code inside php fileit’s what’s default in the theme
Forum: Fixing WordPress
In reply to: how to add content text to a featured-pages pagethank you!
Forum: Themes and Templates
In reply to: [Customizr] Featured page images on IE 8@makapa have you made any progress with fixing your featured pages? I’m trying to do the same
Forum: Themes and Templates
In reply to: [Customizr] Featured pages on Internet Explorer 8I tried the plugin in all three settings (theme, root, plugin), no fix. The squares aren’t so much the issue. It’s the broken links – I just need the blasted things to get me to the next page!
The website is for a company intranet. Most of the employees use IE8. It’s a local site, but I am having the same problems as this site:
http://www.ispeakdogtraining.com/[Moderator Note: No bumping. If it’s that urgent, consider hiring someone.]
Forum: Themes and Templates
In reply to: [Customizr] Site looks bad in Internet Explorerno not really. Theres another thread with this problem too:
http://wordpress.org/support/topic/featured-page-images-on-ie-8?replies=3
his site: http://eerelo.com/the error is in IE8
Forum: Themes and Templates
In reply to: [Customizr] Site looks bad in Internet Exploreri have the same problem. Feat. pages looks bad on ie8, and all links are broken
Forum: Themes and Templates
In reply to: [Customizr] four featured pagesCan you provide a link as this has been requested before so would welcome seeing your code.
Here is what I did:
In the editor I went to “class-content-featured_pages.php” and searched the term “three” and came upon this bit:
//set the areas array $areas = array ( 'one' , 'two' , 'three');and added ‘four’ to the end of it:
//set the areas array $areas = array ( 'one' , 'two' , 'three', 'four' );This made a new menu item appear. After noticing that it was not editable in the customize tab, I eventually came upon this solution:
In class-admin-customize.php, under themes>customizr>admin>inc>admin>class-admin-customize.php, I search “three” again, and for every chunk of code that had “three,” I copied and pasted it right after, and replaced all instances of “three” with “four.”
For example
//widget page three 'tc_theme_options[tc_featured_page_three]' => array( 'label' => __( 'Home featured page three' , 'customizr' ), 'section' => 'tc_frontpage_settings' , 'type' => 'dropdown-pages' , 'priority' => 90,And then,
Copied and pasted and edited to get://widget page four 'tc_theme_options[tc_featured_page_four]' => array( 'label' => __( 'Home featured page four' , 'customizr' ), 'section' => 'tc_frontpage_settings' , 'type' => 'dropdown-pages' , 'priority' => 95,Apply these steps four every instance of “three” to get the fourth/fifth and so on. Then, the customize tab will allow you to edit the destination, description, and button.
The new button would overflow. So fit it onto the page, I read the article ElectricFleet provided and did what he recommended (thanks!). I changed all span4 to span3 in class-content-featured_pages.php to space the four buttons evenly. To spell it out for other beginners like me: twitter bootstrap has 12 columns. The number after “span” indicates the number of columns each div is to occupy. Span3 designated 3 out 12 columns for each div, giving me 4 button spaces.
Forum: Themes and Templates
In reply to: [Customizr] four featured pagesI used css to adjust the width of the .row.widget area
Damn I’m good at answering my own questions.
Thanks!
No problem 😉
Forum: Themes and Templates
In reply to: [Customizr] four featured pagesokay, I solved this by going into class-admin-customize.php
now how do I rearrange the alignment of the featured page icons so I have 1 row of 4, 2 rows of 2?
Forum: Fixing WordPress
In reply to: a href in header.php not workingThanks! Wow I’m an idiot!