Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #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

    #117381

    1) 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">  &rarr;</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">  &rarr;</span></a></div>';

    #117382

    1) It’s ok :)

    2) Ok, I’d like to my homepage, the images to appear in a circle of 150 by 150, like this : 810197Capturedcran20130505114631.png

    What code snippet I need to integrate to had the same result?

    3) It’s ok :)

    Thank you very much Dude :)

    #117383

    Hi,

    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

    #117384

    I 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

    #117385

    I 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 Group

    Version: 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?

    #117386

    Hey!

    Please activate the debug mode: http://codex.wordpress.org/Editing_wp-config.php#Debug – do you see any warning/error message?

    Regards,

    Peter

    #117387

    I 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.

    626960Capturedcran20130507113728.png

    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

    #117388

    Hi,

    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

    #117389

    Thx Ismael, but your code doesn’t work

    In fact, I would to remove the page title, for insert myself in the body of the page.

    Instead, I would like to insert this :

    567432Capturedcran20130508112040.png

    Thx very much for your support

    #117390

    Open 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' => '');

    #117391

    Nothing happened :/ I still have this H1 title on my page.

    #117392

    Hi,

    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

    #117393

    Hi, 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 :)

    #117394

    Ah, one last question. How can I do to make the titles of my articles are H1?

    #117395

    Hi,

    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

    #117396

    Thank you very much, it works.

    You really doing a great job!

    Regards

    R3vOx

Viewing 17 posts - 1 through 17 (of 17 total)
  • The topic ‘Blog option’ is closed to new replies.