-
AuthorPosts
-
May 4, 2013 at 7:22 pm #22828
Hi !
1) I would like to know where is the box “excerpt from the article”
I would like to insert an excerpt for each items that will be displayed on a page. Only, when i used the tag read more of the text editor, it doesn’t function.
2) why the images of my two items are not displayed at the same height? And why one display a orange circle flies over while the other does not?
3) Why the read more link does not work? He referred on the home page (socialweb.fr)
Thank you in advance
May 5, 2013 at 7:28 am #1173811) Maybe you need to activate the option on the post editor screen. Click on “Screen options” in the right corner and check the excerpt checkbox: http://www.clipular.com/c?5393178=DWPIZfYn3Pt6vQ_8EL0lN6Pc9Js&f=.png
2) The reason is that the portfolio thumbnail size is used which does not crop the image. We’ll include an option to select a different thumbnail size in the next version. For now you can change the thumbnail dimensions in functions.php – search for:
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
and set the height to a lower value. Afterwards regenerate the thumbnails http://wordpress.org/extend/plugins/regenerate-thumbnails/
Another option would be to upload bigger thumbnails with at least 495x400px.
3) Probably a bug but I fixed it. Try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php
and replace:
$excerpt .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>';
with
$excerpt .= '<div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>';
May 5, 2013 at 10:05 am #117382May 5, 2013 at 12:45 pm #117383Hi,
2.) You can add a border radius on the container of that image. You can do something like this for example, just inspect the container of the image.
.img_container {
border-radius: 50%;
width: 200px;
height: 200px;
overflow: hidden;
}Can you give us a link to your homepage so that we can inspect it?
Regards,
Ismael
May 5, 2013 at 5:20 pm #117384I managed to do what I wanted. I just create using photoshop psd. I will integrate my photos manually.
A preview of the results : http://www.socialweb.fr
Last question : I will integrate a button “read more” at this page ? http://www.socialweb.fr/reseaux-sociaux/
How can i make it ?
Thx
R3vOx
May 5, 2013 at 10:14 pm #117385I had forgotten that after the last update, you could insert the read more button :)
I have a problems with my child theme. I have recovered the files of Dude. I have this:
/*
Theme Name: Enfold Child theme
Description: A superflexible and responsive Business Theme by Kriesi –
Update notifications available on twitter and facebook:
Follow me on twitter
– Join the Facebook GroupVersion: 1.4
Author: Kriesi
Author URI: http://kriesi.at
License: Themeforest Split Licence
License URI: –
Theme URI: kriesi.at/themes/enfold/
Template: enfold
*/
When I activate this child theme, my site no longer load, I just get a blank page, why?
May 7, 2013 at 5:53 am #117386Hey!
Please activate the debug mode: http://codex.wordpress.org/Editing_wp-config.php#Debug – do you see any warning/error message?
Regards,
Peter
May 7, 2013 at 9:42 am #117387I found the answer. In the ThemeForest site, you say that is the update 1.4.
In fact, in the file hedear.php is marked 1.3.1.
I had simply replaced by 1.4.
I found a problem that affects SEO. Look at the screen.
Here “Features” is an H1, not good in terms of SEO. How to remove?
I wish that instead, there is the watermark (which is right)
How could I do?
Thx
R3vOx
May 7, 2013 at 11:53 pm #117388Hi,
Glad you found it.
Please edit functions-enfold.php and find this code on line 222
$defaults = array(
'title' => get_the_title($id),
'subtitle' => "", //avia_post_meta($id, 'subtitle'),
'link' => get_permalink($id),
'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
'breadcrumb' => true,
'additions' => "",
'heading' => 'h1'
);Replace the heading tag to h3
'heading' => 'h1'
to
'heading' => 'h3'
Regards,
Ismael
May 8, 2013 at 9:22 am #117389May 8, 2013 at 10:16 am #117390Open up page.php and replace:
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
with
if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title('title' => '');
May 8, 2013 at 10:43 am #117391Nothing happened :/ I still have this H1 title on my page.
May 9, 2013 at 1:22 am #117392Hi,
To use a cache plugin during development is counterproductive and a frustrating experience since none of the changes ever show up until the cache expires. Please turn off Supercache.
Thanks,
Nick
May 9, 2013 at 9:48 am #117393Hi, my plugin wp supercache is disable. I coded a more efficient cache plugin and which is active. I just turn it off. About my problem, I have to solve it by hiding the header.
Thank you very much for your answers :)
May 9, 2013 at 10:00 am #117394Ah, one last question. How can I do to make the titles of my articles are H1?
May 9, 2013 at 10:35 am #117395Hi,
Wow. Building a custom cache plugin is some serious stuff. Out of my league. :(
To wrap the post title in an <h1 tag, please open up /includes/helper-post-format.php and on line 54 and 58, please change the <h2 and </h2 respectively, to <h1 and </h1
Thanks,
Nick
May 9, 2013 at 10:58 am #117396Thank you very much, it works.
You really doing a great job!
Regards
R3vOx
-
AuthorPosts
- The topic ‘Blog option’ is closed to new replies.