|
Joomla Tags Support Forum :: ReadMoreExt |
|
|
|
|
|
Subject :Not working inside Alpha Content directory?..
2009-02-23 07:25:42
|
|
|
| Chacapamac |
|
| Intern |
 |
Joined: 2009-02-23 14:05:57
Posts: 7
Location: |
|
|
|
|
|
I try to make it work inside Alpha Content Directory but it’s not working?
I guess it’s because your plugin need a section and category blog layout an Alpha is not seen as such.
Can I make it work? |
|
|
|
|
|
|
Subject :Re: Not working inside Alpha Content directory?..
2009-02-23 19:31:55
|
|
|
| joomlatags |
|
| Master |
 |
Joined: 2009-02-15 12:36:41
Posts: 581
Location: |
|
|
|
|
|
Please find ReadMoreExt.php, on line 29, please drop:<br/>
if(($view=='frontpage')||(($view=='category')&&($layout=='blog'))||(($view=='section')&&($layout=='blog'))){</br>
and<br/>
line 33 }. <br/>
Try again.<br/>
It also depends on the Alpha Content directory also support Joomla Event onBeforeDisplayContent. |
|
|
|
|
|
|
Subject :Re:Not working inside Alpha Content directory?..
2009-08-02 08:59:19
|
|
|
| Chacapamac |
|
| Intern |
 |
Joined: 2009-02-23 14:05:57
Posts: 7
Location: |
|
|
|
|
|
<p>I just install the last version 2.1</p>
<p> </p>
<p>The code I have is;</p>
<p>27- $view=JRequest :: getCmd('view');</p>
<p>
<div>28-<span style="white-space: pre;"> </span>if($view=='article'){</div>
<div>29-<span style="white-space: pre;"> </span>return ;</div>
<div>30-<span style="white-space: pre;"> </span>}</div>
<div>31-</div>
<div>
<div>32- $ignore=$this->exclude('Exclude_Section_Ids',$article->sectionid);</div>
<div>33-<span style="white-space: pre;"> </span>if($ignore){ return; }</div>
<div><span style="white-space: pre;"> </span>$ignore=$this->exclude('Exclude_Category_Ids',$article->catid);</div>
</div>
<div></div>
<div>Where I should add:</div>
<div>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 18.0px; font: 12.0px Arial; color: #242424;">if(($view=='frontpage')||(($view=='category')&&($layout=='blog'))||(($view=='section')&&($layout=='blog')))</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 18.0px; font: 12.0px Arial; color: #242424;"> </p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 18.0px; font: 12.0px Arial; color: #242424;"> </p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; line-height: 18.0px; font: 12.0px Arial; color: #242424;">?????</p>
</div>
</p> |
IP Logged
|
|
|
|
|
|
|
Subject :Re:Not working inside Alpha Content directory?..
2009-08-04 21:36:02
|
|
|
| joomlatags |
|
| Master |
 |
Joined: 2009-02-15 12:36:41
Posts: 581
Location: |
|
|
|
|
|
|
<p>Please set <strong>Only Autolink for content</strong> to No, and try again.</p> |
IP Logged
|
|
|
|
|
|
|
Subject :Re:Not working inside Alpha Content directory?..
2009-08-05 08:09:49
|
|
|
| Chacapamac |
|
| Intern |
 |
Joined: 2009-02-23 14:05:57
Posts: 7
Location: |
|
|
|
|
|
<p>Settings are: </p>
<p>Enabled : Yes</p>
<p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica;">Only Autolink for content: No</p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica;"> </p>
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica;">
<p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica;">Autolink only for first image: Yes</p>
</p>
</p>
<p> </p> |
IP Logged
|
|
|
|
|
|
|
Subject :Re:Not working inside Alpha Content directory?..
2009-08-06 22:36:56
|
|
|
| joomlatags |
|
| Master |
 |
Joined: 2009-02-15 12:36:41
Posts: 581
Location: |
|
|
|
|
|
<p>Does it work now?</p>
<p>If still not, please try to comment line 28-30</p>
<p><strong>if($view=='article'){<br /> return ;<br /> }</strong></p> |
IP Logged
|
|
|
|
|
|
|
Subject :Re:Not working inside Alpha Content directory?..
2009-08-21 09:57:26
|
|
|
| Chacapamac |
|
| Intern |
 |
Joined: 2009-02-23 14:05:57
Posts: 7
Location: |
|
|
|
|
|
<p>Sorry to bother you with my crap, but that will be great to make it work.....</p>
<p> </p>
<p>This is my ReadMoreExt.php</p>
<p>Line 20 to 45</p>
<p> </p>
<div><span style="white-space: pre;"> </span>function onBeforeDisplayContent( &$article, &$params )</div>
<div><span style="white-space: pre;"> </span>{</div>
<div><span style="white-space: pre;"> </span>$option=JRequest :: getCmd('option');</div>
<div><span style="white-space: pre;"> </span>$onlyForComContent=$this->param('Only_For_Com_Content');</div>
<div><span style="white-space: pre;"> </span>if( $onlyForComContent&&($option!= 'com_content')){</div>
<div><span style="white-space: pre;"> </span>return ;</div>
<div><span style="white-space: pre;"> </span>}</div>
<div><span style="white-space: pre;"> </span>$view=JRequest :: getCmd('view');</div>
<div><span style="white-space: pre;"> </span>if($view=='article'){</div>
<div><span style="white-space: pre;"> </span>return ;</div>
<div><span style="white-space: pre;"> </span>}</div>
<div><span style="white-space: pre;"> </span>$ignore=$this->exclude('Exclude_Section_Ids',$article->sectionid);</div>
<div><span style="white-space: pre;"> </span>if($ignore){ return; }</div>
<div><span style="white-space: pre;"> </span>$ignore=$this->exclude('Exclude_Category_Ids',$article->catid);</div>
<div><span style="white-space: pre;"> </span>if($ignore){ return; }</div>
<div><span style="white-space: pre;"> </span>$ignore =$this->exclude('Exclude_Article_Ids',$article->id);</div>
<div><span style="white-space: pre;"> </span>if($ignore){ return; }</div>
<div><span style="white-space: pre;"> </span>$imgTitlePrefix=$this->param('ImgTitlePrefix');</div>
<div><span style="white-space: pre;"> </span>$imgAltPrefix=$this->param('ImgAltPrefix');</div>
<div><span style="white-space: pre;"> </span>$onlyFirstImage=$this->param('Only_For_First_Image');<span style="white-space: pre;"> </span></div>
<div><span style="white-space: pre;"> </span>$autolinks=new AutoLinks($imgTitlePrefix,$imgAltPrefix,$onlyFirstImage);<span style="white-space: pre;"> </span></div>
<div><span style="white-space: pre;"> </span>$article->text=$autolinks->handleImgLinks($article->text,$article->title,$article->readmore_link);</div>
<div><span style="white-space: pre;"> </span>}</div>
<div>What exactly you want me to do?</div>
<p> </p>
<p>The image that I want to be a link in AlphaContent Directory is the intro image.</p> |
IP Logged
|
|
Last Edited On: 2009-08-21 09:57:26 By Chacapamac for the Reason |
|
|
|
|
|
|
Subject :Re:Not working inside Alpha Content directory?..
2010-05-12 02:40:24
|
|
|
| peatar004 |
|
| Enthusiast |
 |
Joined: 2010-05-12 08:28:10
Posts: 11
Location: |
|
|
|
|
|
<p>I have everything on my page looking great. Only thing is one of my entries isnt displaying.</p>
<p>Here is my page: <a href="http://www.johnbellco.com/client/tadward">My page</a></p>
<p>I am using Playa to relate entries and using FF Matrix to create a photo gallery.<br /> I used a jquery tab script to create the tab navigation that will display each gallery entry when the link on the left is clicked.</p>
<p>As you can see, when you first go to the page everything works, but when you click on the “Alpha Residence Gallery” it brings up the boxes, but the entry content does not display. When you view the source of the page, it shows the content is there like it should be.</p>
<p>Why isnt the entry content not displaying?</p>
<p>I have been told that is possibly the jquery script or the implementation of it that is causing this issue.</p>
<p>Been racking my brain over and thought some extra pair of eyes will see what is up.</p> |
IP Logged
|
|
|
|
|
|
|
Subject :Re:Not working inside Alpha Content directory?..
2011-09-07 21:57:47
|
|
|
|
|
|
 |
Joined: 2012-02-08 02:33:20
Posts: 0
Location: |
|
|
|
|
|
|
<p>That's <a title="Nike Air Max" href="http://www.airmaxstoreuk.com/"><strong>Nike Air Max</strong></a> not to say it won't have an effect.<a title="Air Max" href="http://www.airmaxstoreuk.com/"><strong>Air Max</strong></a> "If passed as proposed, it would have a significant impact on the economy," Paul Ashworth, chief US economist for Capital Economics, told The Lookout. But he agreed with Faucher that it wouldn't be enough to pull the <a title="Air Max 2011" href="http://www.airmaxstoreuk.com/nike-air-max-2011-c-28.html">Air Max 2011</a> economy out of the dumps for a sustained period. "It's <a title="Air Max 2010" href="http://www.airmaxstoreuk.com/nike-air-max-2010-c-25.html">Air Max 2010</a> just simply not <a title="Nike Air Max 2009" href="http://www.airmaxstoreuk.com/nike-air-max-2009-c-22.html">Nike Air Max 2009</a> big enough," he said.Three <a title="Air Max Store" href="http://www.airmaxstoreuk.com/"><strong>Air Max Store</strong></a> hundred billion <a title="Air Max 95" href="http://www.airmaxstoreuk.com/nike-air-max-95-c-11.html">Air Max 95</a> dollars represents about two percentage points of GDP, Ashworth said. So if the full Obama plan went into effect in the next year, it would bump economic forecasts for 2012 up <a title="Nike Air Max 95" href="http://www.airmaxstoreuk.com/nike-air-max-95-c-11.html">Nike Air Max 95</a> from around 2 <a title="Air Max Shoes" href="http://www.airmaxstoreuk.com/"><strong>Air Max Shoes</strong></a> percent, where most are currently, to around 4 percent. Or, if spread out over <a title="Air Max 90" href="http://www.airmaxstoreuk.com/nike-air-max-90-c-15.html">Air Max 90</a> a longer time period, it would add around half a percentage point to growth for each of the next four years.What would that mean for jobs? Based on what's known as "Okun's Law," <a title="Air Max LTD 2" href="http://www.airmaxstoreuk.com/nike-air-max-ltd-c-5.html">Air Max LTD 2</a> economists say that a two percentage point rise in GDP translates to a decrease in <a title="Air Max UK" href="http://www.airmaxstoreuk.com/"><strong>Air Max UK</strong></a> unemployment of about 1 percentage point. So a $300 billion boost in spending might bring <a title="Nike Air Max 24-7" href="http://www.airmaxstoreuk.com/nike-air-max-247-c-19.html">Nike Air Max 24-7</a> unemployment <a title="Nike Air Max 90" href="http://www.airmaxstoreuk.com/nike-air-max-90-c-15.html">Nike Air Max 90</a> down from the current rate of 9.1 percent to <a title="Cheap Air Max Shoes" href="http://www.airmaxstoreuk.com/"><strong>Cheap Air Max Shoes</strong></a> somewhere around 8.1 percent.</p> |
IP Logged
|
|
|
|
|