Contents

1. News Post when upgrading from Eleven V1.25 or older to Eleven V1.3

2. Favicon is not visible

3. How do i Create a CF7 form similar to original form ?

4. How do i rate the theme and keep updated ?

5. Hi, The twitter plugin is not working. It shows "" instead of actual tweets

6. My twitter feed does not work anymore as of 12.06.2012

7. Is it possible to change the order of the portfolio categories? The way it is now it goes from the one with least items in it to the one with the most.

1. News Post when upgrading from Eleven V1.25 or older to Eleven V1.3

In Eleven V1.3 we have implemented a full blog. We had to move the old "news" from post to a new Custom Post Type. http://screencast.com/t/FTcJlD2RF .  called News

If you update from older version, you will find your old news content in Post Section 

 

2. Favicon is not visible

If favicon is not visible, check out this ticket. This is general fix: http://clapat.ticksy.com/ticket/73902/

Fix is not needed from Eleven 1.3 upwards.

3. How do i Create a CF7 form similar to original form ?

Insert this code in CF7 form. 

 

<div class="group"> <h2 class="black mb">Send Us a Message</h2> <div class="one_half"> [text your-name watermark "Name"] [email your-email watermark "Email"] [text your-subject watermark "Subject"] </div> <div class="one_half last"> <p>[textarea your-message watermark "Message"]</p> </div> </div> <p align="left"> [submit class:clapat-button "Submit"]</p>

 

add this to your CSS Overide Box


.wpcf7-submit { width:120px; float:left; cursor:pointer; margin:0; font-size:12px; font-weight:normal; }


 

4. How do i rate the theme and keep updated ?

If you want to rate the theme, and be notified about new updates of Eleven Wordpress Theme see attached screenshot. You can rate the theme by clicking on the stars on the right side (the higher the better :-) ), and Check - get notified by email check box to keep updated. 

 

Also check video. 

http://www.youtube.com/watch?v=MmUPDiDOpNY

 

5. Hi, The twitter plugin is not working. It shows "" instead of actual tweets

If plugin is not working, try update file_get_contents to curl get.

To do that, edit file clapat/class.shortcode.php
replace
$content = @json_decode(@file_get_contents($apiURL));
with:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $apiURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($ch);
curl_close($ch);  
$content = @json_decode($output); unset($output);

6. My twitter feed does not work anymore as of 12.06.2012

Twitter stopped using old API, in order to have have your twitter feed working you must to the following steps. 

1. Make a backup of your class.shortcode.php file located in Clapat folder of your current Eleven-WP Theme Installation

2. Edit class.shortcode.php with your favorite text editor (recomanded notepad ++), find function twitterFeed - for 1.2 version starting from line 15 till line 77 

3. Replace those line, with the content from attached .fix file.  - http://clapat.ro/themes/eleven-wp/fix.txt

4. Upload the modified file and hard refresh the page. (CTR+F5 for Chrome)

 

 

 

7. Is it possible to change the order of the portfolio categories? The way it is now it goes from the one with least items in it to the one with the most.

There is a free plugin available - http://wordpress.org/plugins/taxonomy-terms-order/... , you can use it in order to change portfolio filters order.