Forum replies created

    Roman
    Spectator
    Posts: 3147
    December 20, 2013 at 3:45 pm #8815

    you have only two choices to get it to work. with numbers only:

    Code:
    <?php wp_link_pages( array(
    ‘before’ => ‘<div class=”pagination”>’ . __( ‘Pages:’ , ‘alora’ ),
    ‘after’ => ‘</div>’,
    ‘link_before’ => ‘<span class=”current”>’,
    ‘link_after’ => ‘</span>’,
    ‘next_or_number’ => ‘number,
    ‘separator’ => ‘ ‘,
    ‘nextpagelink’ => __( ‘Next <i class=”fa fa-angle-right”></i>’ , ‘alora’ ),
    ‘previouspagelink’ => __( ‘<i class=”fa fa-angle-left”></i> Previous’ , ‘alora’ ),
    ‘pagelink’ => ‘%’,
    ‘echo’ => 1
    )); ?>

    or only with previous/next link:

    Code:
    <?php wp_link_pages( array(
    ‘before’ => ‘<div class=”pagination”>’ . __( ‘Pages:’ , ‘alora’ ),
    ‘after’ => ‘</div>’,
    ‘link_before’ => ‘<span class=”current”>’,
    ‘link_after’ => ‘</span>’,
    ‘next_or_number’ => ‘next’,
    ‘separator’ => ‘ ‘,
    ‘nextpagelink’ => __( ‘Next <i class=”fa fa-angle-right”></i>’ , ‘alora’ ),
    ‘previouspagelink’ => __( ‘<i class=”fa fa-angle-left”></i> Previous’ , ‘alora’ ),
    ‘pagelink’ => ‘%’,
    ‘echo’ => 1
    )); ?>
    Roman
    Spectator
    Posts: 3147
    December 19, 2013 at 8:55 pm #8812

    I think it’s because you are using a text with a domain.. __(‘Next’,’alora’) ….try to use only ‘Next’ . same for the previous link

    Roman
    Spectator
    Posts: 3147
    December 19, 2013 at 2:33 pm #8809

    will try 🙂

    Roman
    Spectator
    Posts: 3147
    December 19, 2013 at 2:32 pm #8808

    insert in Custom CSS field and it will be fine:

    Code:
    .single #main .post h2 {
    margin-bottom: 25px;
    }
    Roman
    Spectator
    Posts: 3147
    December 19, 2013 at 2:30 pm #8807

    this will work. I tested it:

    Code:
    .post-content ul li:before {
    content:’\f105′!important;
    font-family: FontAwesome;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
    border-radius: 75px;
    box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
    font-size: 9px;
    text-align: center;
    display: inline-block;
    float: left;
    font-style: normal;
    font-weight: normal;
    height: 18px;
    line-height: 18px;
    margin: 0 15px 0 0;
    padding: 0;
    text-decoration: inherit;
    }
    Roman
    Spectator
    Posts: 3147
    December 18, 2013 at 9:27 pm #8801

    please provide me your website URL where I may see the code

    In reply to testimonials
    Roman
    Spectator
    Posts: 3147
    December 18, 2013 at 9:26 pm #8800

    have you check the docs on how to set up testimonials with shortcodes? http://theme4press.com/alora-documentation/shortcodes/testimonial/

    Roman
    Spectator
    Posts: 3147
    December 18, 2013 at 9:23 pm #8799

    have you insert all those items separately?

    alora get in touch -> footer 1
    alora social links -> footer 2
    search -> footer 3

    Roman
    Spectator
    Posts: 3147
    December 18, 2013 at 9:21 pm #8798

    try this:

    Code:
    .post-content ul li:before {
    content:’\f105′;
    font-family: FontAwesome;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
    border-radius: 75px;
    box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
    font-size: 9px;
    text-align: center;
    display: inline-block;
    float: left;
    font-style: normal;
    font-weight: normal;
    height: 18px;
    line-height: 18px;
    margin: 0 0 15px;
    padding: 0 0 0 25px;
    margin-right: 0;
    text-decoration: inherit;
    width: 18px;
    }
    Roman
    Spectator
    Posts: 3147
    December 18, 2013 at 10:37 am #8795

    try insert this in Custom CSS:

    Code:
    .post-content ul li:before {
    content:’\f105′;
    font-family: FontAwesome;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.05);
    border-radius: 75px;
    box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.1) inset;
    font-size: 9px;
    text-align: center;
    }