Viewing 11 posts - 31 through 41 (of 41 total)
  • Author
    Posts
  • giusti2 Friend
    #751482

    <em>@Ninja Lead 497102 wrote:</em><blockquote>Other places are showing duplicate image, you can add css style below into custom.css file

    img.facebook-img.ja-social-img {
    display: none;
    }

    It will fix the problem on your site.</blockquote>

    Thanky you Ninja. It works … now I have just 2 more things … I would like to disable the source link (Source Facebook) to and how can I show the article in a normal way and not with “quotes”. Thank you very much for your help.

    Ninja Lead Moderator
    #704772

    Add css style below to custom.css file, the problem on your site is gone.


    .article-full.has-article-tools .article-content-main blockquote {
    background: none !important;
    border-left: 0px solid #8F8F8F !important;
    color: #333333 !important;
    font: initial !important;
    margin: 0px !important;
    padding: 0px !important;
    text-shadow: 0px 1px 1px #ffffff !important;
    width: initial !important;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -webkit-border: 0px !important;
    }

    .article-full.has-article-tools .article-content-main blockquote:before {
    content: "" !important;
    }

    .content-links .nav-tabs li {
    display: none;
    }

    Ninja Lead Moderator
    #751483

    Add css style below to custom.css file, the problem on your site is gone.


    .article-full.has-article-tools .article-content-main blockquote {
    background: none !important;
    border-left: 0px solid #8F8F8F !important;
    color: #333333 !important;
    font: initial !important;
    margin: 0px !important;
    padding: 0px !important;
    text-shadow: 0px 1px 1px #ffffff !important;
    width: initial !important;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -webkit-border: 0px !important;
    }

    .article-full.has-article-tools .article-content-main blockquote:before {
    content: "" !important;
    }

    .content-links .nav-tabs li {
    display: none;
    }

    giusti2 Friend
    #704883

    <em>@Ninja Lead 497130 wrote:</em><blockquote>Add css style below to custom.css file, the problem on your site is gone.


    .article-full.has-article-tools .article-content-main blockquote {
    background: none !important;
    border-left: 0px solid #8F8F8F !important;
    color: #333333 !important;
    font: initial !important;
    margin: 0px !important;
    padding: 0px !important;
    text-shadow: 0px 1px 1px #ffffff !important;
    width: initial !important;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -webkit-border: 0px !important;
    }

    .article-full.has-article-tools .article-content-main blockquote:before {
    content: "" !important;
    }

    .content-links .nav-tabs li {
    display: none;
    }

    </blockquote>Great … thank you very much … I have another point … Facebook posts have no Titles and the Title of the imported article is a cutted copy of the 1st phrase of the article. Is it maybe possible to set after the cutted Title 3 points (e.g. …)?

    giusti2 Friend
    #751546

    <em>@Ninja Lead 497130 wrote:</em><blockquote>Add css style below to custom.css file, the problem on your site is gone.


    .article-full.has-article-tools .article-content-main blockquote {
    background: none !important;
    border-left: 0px solid #8F8F8F !important;
    color: #333333 !important;
    font: initial !important;
    margin: 0px !important;
    padding: 0px !important;
    text-shadow: 0px 1px 1px #ffffff !important;
    width: initial !important;
    border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    -webkit-border: 0px !important;
    }

    .article-full.has-article-tools .article-content-main blockquote:before {
    content: "" !important;
    }

    .content-links .nav-tabs li {
    display: none;
    }

    </blockquote>Great … thank you very much … I have another point … Facebook posts have no Titles and the Title of the imported article is a cutted copy of the 1st phrase of the article. Is it maybe possible to set after the cutted Title 3 points (e.g. …)?

    Ninja Lead Moderator
    #704914

    It would be great if you can include an illustrated screenshot of what you are trying to achieve, It would help to understand the issues and give you specific answers.

    Ninja Lead Moderator
    #751577

    It would be great if you can include an illustrated screenshot of what you are trying to achieve.

    giusti2 Friend
    #704971

    <em>@Ninja Lead 497262 wrote:</em><blockquote>It would be great if you can include an illustrated screenshot of what you are trying to achieve.</blockquote>

    http://prestigeemag.com/bau/

    giusti2 Friend
    #751609

    <em>@Ninja Lead 497262 wrote:</em><blockquote>It would be great if you can include an illustrated screenshot of what you are trying to achieve.</blockquote>

    http://prestigeemag.com/bau/

    Ninja Lead Moderator
    #704975

    <em>@giusti2 497299 wrote:</em><blockquote>http://prestigeemag.com/bau/

    </blockquote>

    You can apply my solution

    + Open templates/ja_teline_v/html/layouts/joomla/content/blog_style_default_item_title.php file

    find and change

    <h3 itemprop="name">
    <?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
    <a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid)); ?>" itemprop="url">
    <?php echo $this->escape($displayData->title); ?></a>
    <?php else : ?>
    <?php echo $this->escape($displayData->title); ?>
    <?php endif; ?>
    </h3>

    to

    <h3 itemprop="name">
    <?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
    <a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid)); ?>" itemprop="url">
    <?php echo $this->escape($displayData->title)."..."; ?></a>
    <?php else : ?>
    <?php echo $this->escape($displayData->title)."..."; ?>
    <?php endif; ?>
    </h3>

    Ninja Lead Moderator
    #751613

    <em>@giusti2 497299 wrote:</em><blockquote>http://prestigeemag.com/bau/

    </blockquote>

    You can apply my solution

    + Open templates/ja_teline_v/html/layouts/joomla/content/blog_style_default_item_title.php file

    find and change

    <h3 itemprop="name">
    <?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
    <a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid)); ?>" itemprop="url">
    <?php echo $this->escape($displayData->title); ?></a>
    <?php else : ?>
    <?php echo $this->escape($displayData->title); ?>
    <?php endif; ?>
    </h3>

    to

    <h3 itemprop="name">
    <?php if ($params->get('link_titles') && $params->get('access-view')) : ?>
    <a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($displayData->slug, $displayData->catid)); ?>" itemprop="url">
    <?php echo $this->escape($displayData->title)."..."; ?></a>
    <?php else : ?>
    <?php echo $this->escape($displayData->title)."..."; ?>
    <?php endif; ?>
    </h3>

Viewing 11 posts - 31 through 41 (of 41 total)

This topic contains 41 replies, has 2 voices, and was last updated by  Ninja Lead 9 years, 1 month ago.

We moved to new unified forum. Please post all new support queries in our New Forum