Robert Gianfelice

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Formatting Team member info and Testimonials #170983
    Robert GianfeliceRobert Gianfelice
    Participant
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: October 20, 2020

    I found it myself, the php file (single-team.php) in the Theme root folder, line 29
    I replaced <h1 class=”postitle entry-title”><?php the_title(); ?></h1><span>(<?php echo $designation; ?>)</span>
    with <h1 class=”postitle entry-title”><?php the_title(); ?></h1><span><?php echo $designation; ?></span>

    Can you tell me the CSS to increase the height of the viewing pane for the Testimonials on this page? http://rochford.arvox.com/

    When I have a long Testimonial, sometimes the persons name, and designation do not appear in the pane

    Thanks

    in reply to: Formatting Team member info and Testimonials #170853
    Robert GianfeliceRobert Gianfelice
    Participant
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: October 20, 2020

    Hi, thanks for your help.

    I changed the line 599, but the () still appears around the designation on this page http://rochford.arvox.com/our-team/stefanie-rochford/
    The html for this page is as follows:
    <!–POST START–>
    <div class=”single_post_content”>
    <h1 class=”postitle entry-title”>Stefanie Rochford</h1><span>(President)</span>

    This is the page that loads after you click the image of the Team member on the homepage, I need to remove the () around the designation. It is not in the core-function.php, is there another page that controls the Team member expanded page?

    2. Regarding the Testimonials:
    How do I increase the height of the Testimonial pane so I can ensure the page will always display the name and designation?
    How to I hide the Testimonial image? I am using this CSS >> .testimonial-image { display:none}
    How do I have the Testimonial text fill the full width of the pane? I am using this CSS .testimonilacontent { width:95%}

    Robert

    in reply to: Logo and Testimonials in second language #170266
    Robert GianfeliceRobert Gianfelice
    Participant
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: October 20, 2020

    Hello, please cancel my support request, I found a solution on my own.

    Thanks

    in reply to: Logo and Testimonials in second language #170082
    Robert GianfeliceRobert Gianfelice
    Participant
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: October 20, 2020

    Hello

    I sent you the admin credentials on Monday, please advise if you did not receive them, thanks.
    Robert

    in reply to: Logo and Testimonials in second language #169804
    Robert GianfeliceRobert Gianfelice
    Participant
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: October 20, 2020

    Thank you for your help I am now able to publish French content for Testimonials and Teams.

    Regarding the logo, I found an article on PolyLang, https://support.pojo.me/docs/polylang-change-logo-every-language/

    As they suggest I created a child theme and added this code to the functions.php, but it does not work!

    Does the logo have a different name in the customizer, I think that might be the issue.

    Code is as follows

    function pojo_polylang_get_multilang_logo( $value ) {
    if ( function_exists( ‘pll_current_language’ ) ) {
    $logos = array(
    ‘en_CA’ => ‘logointerviewjobs_200_icon.png’,
    ‘fr_CA’ => ‘logointerviewjobs_200_icon_fr.png’,
    );
    $default_logo = $logos[‘en_CA’];
    $current_lang = pll_current_language();
    $assets_url = get_stylesheet_directory_uri() . ‘/assets/images/’;
    if ( isset( $logos[ $current_lang ] ) )
    $value = $assets_url . $logos[ $current_lang ];
    else
    $value = $assets_url . $default_logo;
    }
    return $value;
    }
    add_filter( ‘theme_mod_image_logo’, ‘pojo_polylang_get_multilang_logo’ );

    in reply to: Logo and Testimonials in second language #169715
    Robert GianfeliceRobert Gianfelice
    Participant
    • Topics: 2
    • Replies: 6
    • Total: 8
    Member since: October 20, 2020

    I am not sure if you got my earlier reply, here again is the url http://rochford.arvox.com/

    Thanks

Viewing 6 posts - 1 through 6 (of 6 total)