Joomla! Discussion Forums



It is currently Mon Nov 23, 2009 2:24 am (All times are UTC )

 





Post new topic Reply to topic  [ 84 posts ]  Go to page Previous  1, 2, 3
Author Message
Posted: Sun Feb 10, 2008 4:03 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Oct 06, 2007 9:41 am
Posts: 5
That functions perfectly with the template portal 68 V1.5 and Joomla V1.5.1


Top
  E-mail  
 
Posted: Sun Feb 10, 2008 7:31 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Jan 11, 2008 9:58 am
Posts: 11
I was using J! 1.5 stable and I had that problem. Yesterday I upgraded to 1.5.1 and I still have it  :'(


Top
   
 
Posted: Sun Feb 10, 2008 9:53 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Sun Feb 03, 2008 11:47 pm
Posts: 2
mmazb3 wrote:
I was using J! 1.5 stable and I had that problem. Yesterday I upgraded to 1.5.1 and I still have it  :'(


The problem is in /templates/68portal/html/com_content/article/form.php.

This is a fix I got from MiCCAS, I just replaced the whole form.php with this. You might want to compare to the original if you want to find out what was wrong.

Code:
<?php // no direct access
defined('_JEXEC') or die('Restricted access'); ?>
<script language="javascript" type="text/javascript">
<!--
function setgood() {
   // TODO: Put setGood back
   return true;
}

var sectioncategories = new Array;
<?php
$i = 0;
foreach ($this->lists['sectioncategories'] as $k=>$items) {
   foreach ($items as $v) {
      echo "sectioncategories[".$i++."] = new Array( '$k','".addslashes( $v->id )."','".addslashes( $v->title )."' );\n\t\t";
   }
}
?>


function submitbutton(pressbutton) {
   var form = document.adminForm;
   if (pressbutton == 'cancel') {
      submitform( pressbutton );
      return;
   }
   try {
      form.onsubmit();
   } catch(e) {
      alert(e);
   }

   // do field validation
   var text = <?php echo $this->editor->getContent( 'text' ); ?>
   if (form.title.value == '') {
      return alert ( "<?php echo JText::_( 'Article must have a title', true ); ?>" );
   } else if (text == '') {
      return alert ( "<?php echo JText::_( 'Article must have some text', true ); ?>");
   } else if (parseInt('<?php echo $this->article->sectionid;?>')) {
      // for articles
      if (form.catid && getSelectedValue('adminForm','catid') < 1) {
         return alert ( "<?php echo JText::_( 'Please select a category', true ); ?>" );
      }
   }
   <?php echo $this->editor->save( 'text' ); ?>
   submitform(pressbutton);
}
//-->
</script>
<form action="<?php echo $this->action ?>" method="post" name="adminForm" onSubmit="setgood();">
<fieldset>
<legend><?php echo JText::_('Editor'); ?></legend>
<table class="adminform" width="100%">
<tr>
   <td>
      <div style="float: left;">
         <label for="title">
            <?php echo JText::_( 'Title' ); ?>:
         </label>
         <input class="inputbox" type="text" id="title" name="title" size="50" maxlength="100" value="<?php echo $this->escape($this->article->title); ?>" />
      </div>
      <div style="float: right;">
         <button type="button" onclick="submitbutton('save')">
            <?php echo JText::_('Save') ?>
         </button>
         <button type="button" onclick="submitbutton('cancel')">
            <?php echo JText::_('Cancel') ?>
         </button>
      </div>
   </td>
</tr>
</table>

<?php
echo $this->editor->display('text', $this->article->text, '100%', '400', '70', '15');
?>
</fieldset>
<fieldset>
<legend><?php echo JText::_('Publishing'); ?></legend>
<table class="adminform">
<tr>
   <td class="key">
      <label for="sectionid">
         <?php echo JText::_( 'Section' ); ?>:
      </label>
   </td>
   <td>
      <?php echo $this->lists['sectionid']; ?>
   </td>
</tr>
<tr>
   <td class="key">
      <label for="catid">
         <?php echo JText::_( 'Category' ); ?>:
      </label>
   </td>
   <td>
      <?php echo $this->lists['catid']; ?>
   </td>
</tr>
<?php if ($this->user->authorize('com_content', 'publish', 'content', 'all')) : ?>
<tr>
   <td class="key">
      <label for="state">
         <?php echo JText::_( 'Published' ); ?>:
      </label>
   </td>
   <td>
      <?php echo $this->lists['state']; ?>
   </td>
</tr>
<?php endif; ?>
<tr>
   <td width="120" class="key">
      <label for="frontpage">
         <?php echo JText::_( 'Show on Front Page' ); ?>:
      </label>
   </td>
   <td>
      <?php echo $this->lists['frontpage']; ?>
   </td>
</tr>
<tr>
   <td class="key">
      <label for="created_by_alias">
         <?php echo JText::_( 'Author Alias' ); ?>:
      </label>
   </td>
   <td>
      <input type="text" id="created_by_alias" name="created_by_alias" size="50" maxlength="100" value="<?php echo $this->article->created_by_alias; ?>" class="inputbox" />
   </td>
</tr>
<tr>
   <td class="key">
      <label for="publish_up">
         <?php echo JText::_( 'Start Publishing' ); ?>:
      </label>
   </td>
   <td>
       <?php echo JHTML::_('calendar', $this->article->publish_up, 'publish_up', 'publish_up', '%Y-%m-%d %H:%M:%S', array('class'=>'inputbox', 'size'=>'25',  'maxlength'=>'19')); ?>
   </td>
</tr>
<tr>
   <td class="key">
      <label for="publish_down">
         <?php echo JText::_( 'Finish Publishing' ); ?>:
      </label>
   </td>
   <td>
       <?php echo JHTML::_('calendar', $this->article->publish_down, 'publish_down', 'publish_down', '%Y-%m-%d %H:%M:%S', array('class'=>'inputbox', 'size'=>'25',  'maxlength'=>'19')); ?>
   </td>
</tr>
<tr>
   <td valign="top" class="key">
      <label for="access">
         <?php echo JText::_( 'Access Level' ); ?>:
      </label>
   </td>
   <td>
      <?php echo $this->lists['access']; ?>
   </td>
</tr>
<tr>
   <td class="key">
      <label for="ordering">
         <?php echo JText::_( 'Ordering' ); ?>:
      </label>
   </td>
   <td>
      <?php echo $this->lists['ordering']; ?>
   </td>
</tr>
</table>
</fieldset>

<fieldset>
<legend><?php echo JText::_('Metadata'); ?></legend>
<table class="adminform">
<tr>
   <td valign="top" class="key">
      <label for="metadesc">
         <?php echo JText::_( 'Description' ); ?>:
      </label>
   </td>
   <td>
      <textarea rows="5" cols="50" style="width:500px; height:120px" class="inputbox" id="metadesc" name="metadesc"><?php echo str_replace('&','&',$this->article->metadesc); ?></textarea>
   </td>
</tr>
<tr>
   <td  valign="top" class="key">
      <label for="metakey">
         <?php echo JText::_( 'Keywords' ); ?>:
      </label>
   </td>
   <td>
      <textarea rows="5" cols="50" style="width:500px; height:50px" class="inputbox" id="metakey" name="metakey"><?php echo str_replace('&','&',$this->article->metakey); ?></textarea>
   </td>
</tr>
</table>
</fieldset>

<input type="hidden" name="option" value="com_content" />
<input type="hidden" name="id" value="<?php echo $this->article->id; ?>" />
<input type="hidden" name="version" value="<?php echo $this->article->version; ?>" />
<input type="hidden" name="created_by" value="<?php echo $this->article->created_by; ?>" />
<input type="hidden" name="referer" value="<?php echo @$_SERVER['HTTP_REFERER']; ?>" />
<?php echo JHTML::_( 'form.token' ); ?>
<input type="hidden" name="task" value="" />
</form>
<?php echo JHTML::_('behavior.keepalive'); ?>


Top
  E-mail  
 
Posted: Mon Feb 11, 2008 1:42 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Jan 11, 2008 9:58 am
Posts: 11
To DriveBy

Thank you so much. I applied the changes and now everything works great. Nothing to dream about, just perfect.


Top
   
 
Posted: Sun Feb 24, 2008 1:29 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Mon Feb 18, 2008 1:55 am
Posts: 2
So I've been working on a site based off this template for a non-profit group I'm a member of, and I've been having nothing but confusion and issues popping up all over. The template itself has turned out very nicely when I made the changes, but I've been having issues trying to figure out everything in Joomla being a new user. Basically changing over the menus and all the joomla information that the page had on it so I can put in our own information has been a complete nightmare.

If someone who has a lot of experience working in this program and a lot of patience could pm me, I would appreciate it very much. The owners have been on me the past month to get this new site up and running and I've got no experience working a CMS... :(


Top
  E-mail  
 
Posted: Thu Feb 28, 2008 12:14 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Sat Dec 01, 2007 4:30 pm
Posts: 3
Hi Axel,

I appreciate the work that has been put into this wonderful template. I am sure it will be preferred by many.

I have contacted you by email sometime ago for a possible commercial project.

Cheers.


Top
  E-mail  
 
Posted: Sun Mar 02, 2008 10:37 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Tue Oct 30, 2007 7:42 am
Posts: 3
I just love your template, thank you for your hard work. I got the invalid token error but a quick search in this forumtopic and it was fixed. I installed your templated on http://www.anbert.nl. Thanx again! :laugh:


Top
  E-mail  
 
Posted: Wed Mar 19, 2008 1:23 am 
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Oct 12, 2007 12:52 am
Posts: 123
I was looking through a bunch of the templates from the contest and this one caught my eye and as I was reading through the comments I saw this one:

Quote:
hey guys, sorry for the delay.. i've so much work at the moment.
but hey, i'll release a j15 stable ready version tomorrow. ;)

best regards, axel


and I was wondering if the link in the first post was for the stable version that he mentioned.


Top
  E-mail  
 
Posted: Wed Mar 19, 2008 1:40 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Sat Dec 01, 2007 4:30 pm
Posts: 3
Nope, It is still the old one. The template has not been updated yet.


Top
  E-mail  
 
Posted: Sat Mar 22, 2008 8:40 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Mar 22, 2008 8:28 am
Posts: 5
Please, can someone help with this problems?

When i write some word in search box and then enter, it find me a good results but also give me this message:
Warning: sprintf() [function.sprintf]: Too few arguments in
/home/radovine/public_html/libraries/joomla/methods.php on line 277


And i have some questions about banners.
Why i can't put some picture banner on the right side?

I have J1.5 version.
I really like this template.

Tnx for your help ;)


Top
  E-mail  
 
Posted: Mon Mar 31, 2008 7:20 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Mon Mar 31, 2008 7:13 pm
Posts: 2
I keep getting this error when I try to proceed to my shopping cart on my site http://www.sbpoochie.com. I am having difficulties getting the Paypal to work?

Warning: sprintf() [function.sprintf]: Too few arguments in /home/sbpoochi/public_html/administrator/components/com_virtuemart/html/checkout.index.php on line 258

Any advice?

Thanks


Top
  E-mail  
 
Posted: Sat Apr 19, 2008 6:14 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Mar 22, 2008 8:28 am
Posts: 5
sbpoochie1 wrote:
I keep getting this error when I try to proceed to my shopping cart on my site http://www.sbpoochie.com. I am having difficulties getting the Paypal to work?

Warning: sprintf() [function.sprintf]: Too few arguments in /home/sbpoochi/public_html/administrator/components/com_virtuemart/html/checkout.index.php on line 258

Any advice?

Thanks


I've had the same problem but in the search box.. The problem is in a language folder. You have to compare two .ini files that have some connections with your part. In my case that was com_search.ini file in english folder and in my language. The arguments have to be the same.
For example: if in english file you have 'TOTALRESULTSFOUND=Total %s results found.' in your language you must have the same apportionment of the words. For example: 'TOTALRESULTSFOUND=Something %s something something.'
But not 'TOTALRESULTSFOUND=Something something. Something %s something.'

Sorry for bad english.
I hope that you have catch the point :-[ ;)


Top
  E-mail  
 
Posted: Tue May 06, 2008 4:18 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Apr 20, 2007 4:07 pm
Posts: 5
I'm having a problem with this template and JCE Content editor on IE.

When I am editing content in the front end and click the Media Manager the window that comes up is off set to the right. The X and the bottom border of the popup are correctly positioned however. In firefox everything works just fine. I have attached a screen shot to show you what I mean.

Any suggestions?


You do not have the required permissions to view the files attached to this post.


Top
  E-mail  
 
Posted: Tue May 13, 2008 8:59 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Mar 22, 2008 8:28 am
Posts: 5
Did you try to set up the resolution?
In back-end go to the template settings and set the right resolution.


Top
  E-mail  
 
Posted: Tue May 13, 2008 2:29 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Apr 20, 2007 4:07 pm
Posts: 5
I dont have any options for resolution, I have Width of Template which I have tried adjusting, but no luck.

Did you mean in the CSS or HTML or is there maybe a newer version of the template?


Top
  E-mail  
 
Posted: Tue May 13, 2008 3:17 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Mar 22, 2008 8:28 am
Posts: 5
Valkur wrote:
I dont have any options for resolution, I have Width of Template which I have tried adjusting, but no luck.

Did you mean in the CSS or HTML or is there maybe a newer version of the template?


I meant on this Width of Template. My resolution is 1280 by 1024 px so i put Width of Template on 1024 px and it works perfectly. I have version 1.5 of this template and it is the last so check for some of these properties.
IE always have to make some troubles :-\


Top
  E-mail  
 
Posted: Tue May 13, 2008 3:34 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Apr 20, 2007 4:07 pm
Posts: 5
Still no luck im afraid, no matter what I set it acts the same. Are you using JCE Editor? maybe its not a template problem.


Top
  E-mail  
 
Posted: Tue May 13, 2008 4:28 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Mar 22, 2008 8:28 am
Posts: 5
Valkur wrote:
Still no luck im afraid, no matter what I set it acts the same. Are you using JCE Editor? maybe its not a template problem.


I've tried every editor and i didn't have any problems, now i use JoomlaFCK and it works... I hope that you will solved this problem, if now you can use FF.


Top
  E-mail  
 
Posted: Wed May 21, 2008 5:38 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Wed May 21, 2008 5:15 pm
Posts: 2
Hello to everyone,
I tried 68portal template (under Joomla 1.5.3 in native mode) and I like it very much. But, I have a problem when I put 10 articles or more on the frontpage.
The first page (5 articles) is correctly displayed, but on the next page, the two last articles are misaligned. :(
If I reduce to 9 the article number, le last article is misaligned. Il I reduce to 8 articles, all is OK. :'(
Do you know this matter, if yes do you have a soluce ?
Thanks
Best Regards
Fabulon

PS : I do my tests under the last version of MOVAMP. With IE7, I get the problem. With FireFox 3 all works fine.


Top
  E-mail  
 
Posted: Fri May 23, 2008 8:36 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Wed May 21, 2008 5:15 pm
Posts: 2
fabulon wrote:
Hello to everyone,
I tried 68portal template (under Joomla 1.5.3 in native mode) and I like it very much. But, I have a problem when I put 10 articles or more on the frontpage.
The first page (5 articles) is correctly displayed, but on the next page, the two last articles are misaligned. :(
If I reduce to 9 the article number, le last article is misaligned. Il I reduce to 8 articles, all is OK. :'(
Do you know this matter, if yes do you have a soluce ?
Thanks
Best Regards
Fabulon

PS : I do my tests under the last version of MOVAMP. With IE7, I get the problem. With FireFox 3 all works fine.


Hello, I think have found the problem.
Into an article, I found a space caracter with bold attribute at the begin of "read more dashed line". If I delete this attribute, all articles of the frontpage are correctly aligned.
Best Regards
Fabulon


Top
  E-mail  
 
Posted: Wed Jun 18, 2008 11:25 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Mon May 26, 2008 3:41 am
Posts: 1
I cannot get this to work in IE. The template works fine in Firefox.... Can anyone help?


Top
  E-mail  
 
Posted: Sat Jul 12, 2008 3:19 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Sat Jul 12, 2008 3:10 pm
Posts: 1
Hello

in the description of the template there is :

added 4 nice css boxes (classes: .greenbox, .darkgreenbox, .orangebox, .cyanbox)

Someone can explain me haw to use this classes.

Thanks


Top
  E-mail  
 
Posted: Sat Jul 19, 2008 11:35 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Aug 22, 2005 3:31 pm
Posts: 114
Location: Norfolk, UK
renzo_82 wrote:
Hello

in the description of the template there is :

added 4 nice css boxes (classes: .greenbox, .darkgreenbox, .orangebox, .cyanbox)

Someone can explain me haw to use this classes.

Thanks


These are css classes and they have to be applied to the html to tell the page content how to display. If you wanted to use a green box around something and you are using a WYSIWYG editor, highlight the content you want displayed in that box then in the drop-down menu on the editor called something like 'style' you will be able to choose .greenbox or whichever. If you are working in code it would look something like this:
Code:
<div class="greenbox">This is the content you want in the box</div>

You can also add it to the various modules displayed on your page in the module parameters on the right - just type in the class you want to use...

Hils

_________________
Start Joomla! the right way
http://lvsonline.com/online-joomla-class/


Top
   
 
Posted: Sat Aug 09, 2008 11:14 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Mar 22, 2008 10:11 pm
Posts: 16
68portal will be update again? I use in my page, there are many features will not change! But do not seem compatible with Joomla! 1.5 version!

My Joomla! site:http://ismybestchoice.com/joomla/

_________________
My Joomla! site:http://joomlachoice.com/


Top
  E-mail  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 84 posts ]  Go to page Previous  1, 2, 3

Quick reply

 



Who is online

Users browsing this forum: No registered users and 5 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group