-
AuthorPosts
-
romolo Friend
romolo
- Join date:
- August 2012
- Posts:
- 585
- Downloads:
- 97
- Uploads:
- 37
- Thanks:
- 79
- Thanked:
- 23 times in 11 posts
July 2, 2015 at 2:30 pm #208162Every time we create a new article, all of the content sits within a block quote.
Please see example here:
We have ensured block quote is turned off in articles too, but still no joy…
We don’t want all of the article content to sit in a blockquote… It’s affecting our development of the site.Please investigate and advise asap.
Thanks
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 3, 2015 at 3:37 am #576197I guess magic quote is enabled on your site, in Joomla 3, it should be turn off.
You can check out this tips: https://docs.joomla.org/How_to_turn_off_magic_quotes_gpc_for_Joomla_3
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 3, 2015 at 3:37 am #642523I guess magic quote is enabled on your site, in Joomla 3, it should be turn off.
You can check out this tips: https://docs.joomla.org/How_to_turn_off_magic_quotes_gpc_for_Joomla_3
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 3, 2015 at 3:37 am #741182I guess magic quote is enabled on your site, in Joomla 3, it should be turn off.
You can check out this tips: https://docs.joomla.org/How_to_turn_off_magic_quotes_gpc_for_Joomla_3
romolo Friendromolo
- Join date:
- August 2012
- Posts:
- 585
- Downloads:
- 97
- Uploads:
- 37
- Thanks:
- 79
- Thanked:
- 23 times in 11 posts
July 3, 2015 at 10:53 am #576292Hi @saguaros,
Thank you for your response.
I’m not sure if that is the issue, as you will see some of the sample articles display a block quote with no problem…
Such as (http://www.awesomescreenshot.com/image/378096/ead0eb07438ff93e2f8ac93bccf1c4a7)But when we create a new article, all of the content is placed within a block quote (even when we haven’t selected a blockquote).
Such as (http://www.awesomescreenshot.com/image/378102/7658840be71df67ad6285d1703bc4126)Please investigate and advise.
ThanksSaguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 3, 2015 at 11:43 am #576295You can simply switch default template to standard template of Joomla. If problem persists then it comes from Joomla, not our template.
Did you ever try to check whether magic quote is turned OFF or not
romolo Friendromolo
- Join date:
- August 2012
- Posts:
- 585
- Downloads:
- 97
- Uploads:
- 37
- Thanks:
- 79
- Thanked:
- 23 times in 11 posts
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 6, 2015 at 2:22 am #576381Hi
The problem come from the way you create article. In Joomla, it’s better if you specify the intro text and full text for article. You didn’t do this so that when showing on your site, it considers all text as intro text (which is styled within quote due to the concept of this template).
There are 2 ways to handle in this case:
1. When adding a new artilce, you can specify the intro text by adding a readmore like I’ve applied to the article named About in your site: http://prntscr.com/7pa1id2. In case that you don’t way to add this readmore button, you can remove the blockquote tag for intro text by opening this file: root/templates/ja_charity/html/layouts/joomla/content/item/default.php
Look for this snippet of code:
<?php if ($params->get('show_intro', 0)) : ?>
<blockquote class="article-intro" itemprop="description">
<?php echo $item->introtext; ?>
</blockquote>
<?php endif; ?>
then change the <blockquote> to any HTML tag as you want.
P/s: I recommend you to use the first way as it still keeps the style for intro text in article and it’s default way of Joomla.
1 user says Thank You to Saguaros for this useful post
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 6, 2015 at 2:22 am #642702Hi
The problem come from the way you create article. In Joomla, it’s better if you specify the intro text and full text for article. You didn’t do this so that when showing on your site, it considers all text as intro text (which is styled within quote due to the concept of this template).
There are 2 ways to handle in this case:
1. When adding a new artilce, you can specify the intro text by adding a readmore like I’ve applied to the article named About in your site: http://prntscr.com/7pa1id2. In case that you don’t way to add this readmore button, you can remove the blockquote tag for intro text by opening this file: root/templates/ja_charity/html/layouts/joomla/content/item/default.php
Look for this snippet of code:
<?php if ($params->get('show_intro', 0)) : ?>
<blockquote class="article-intro" itemprop="description">
<?php echo $item->introtext; ?>
</blockquote>
<?php endif; ?>
then change the <blockquote> to any HTML tag as you want.
P/s: I recommend you to use the first way as it still keeps the style for intro text in article and it’s default way of Joomla.
1 user says Thank You to Saguaros for this useful post
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 6, 2015 at 2:22 am #741359Hi
The problem come from the way you create article. In Joomla, it’s better if you specify the intro text and full text for article. You didn’t do this so that when showing on your site, it considers all text as intro text (which is styled within quote due to the concept of this template).
There are 2 ways to handle in this case:
1. When adding a new artilce, you can specify the intro text by adding a readmore like I’ve applied to the article named About in your site: http://prntscr.com/7pa1id2. In case that you don’t way to add this readmore button, you can remove the blockquote tag for intro text by opening this file: root/templates/ja_charity/html/layouts/joomla/content/item/default.php
Look for this snippet of code:
<?php if ($params->get('show_intro', 0)) : ?>
<blockquote class="article-intro" itemprop="description">
<?php echo $item->introtext; ?>
</blockquote>
<?php endif; ?>
then change the <blockquote> to any HTML tag as you want.
P/s: I recommend you to use the first way as it still keeps the style for intro text in article and it’s default way of Joomla.
1 user says Thank You to Saguaros for this useful post
romolo Friendromolo
- Join date:
- August 2012
- Posts:
- 585
- Downloads:
- 97
- Uploads:
- 37
- Thanks:
- 79
- Thanked:
- 23 times in 11 posts
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
July 6, 2015 at 4:12 pm #576518Yes, and remember that the intro text of articles on your site will not show in ‘blockquote’ anymore.
romolo Friendromolo
- Join date:
- August 2012
- Posts:
- 585
- Downloads:
- 97
- Uploads:
- 37
- Thanks:
- 79
- Thanked:
- 23 times in 11 posts
romolo Friendromolo
- Join date:
- August 2012
- Posts:
- 585
- Downloads:
- 97
- Uploads:
- 37
- Thanks:
- 79
- Thanked:
- 23 times in 11 posts
romolo Friendromolo
- Join date:
- August 2012
- Posts:
- 585
- Downloads:
- 97
- Uploads:
- 37
- Thanks:
- 79
- Thanked:
- 23 times in 11 posts
AuthorPostsViewing 15 posts - 1 through 15 (of 15 total)This topic contains 15 replies, has 2 voices, and was last updated by romolo 9 years, 4 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
All article content within Blockquote…
Viewing 15 posts - 1 through 15 (of 15 total)