Jump to content

Jon

Members
  • Posts

    159
  • Joined

  • Last visited

Posts posted by Jon

  1. 8 hours ago, Guy Incognito said:

    I think it could be because you are also using url segments. You can set the base URL for the page to be paginated when calling the pager. I can't seem to find the relevant docs at the moment but this is a snippet from a project I have open at the moment that I recall has the same issue that hopefully shows the syntax you need.

    
    $pagination = $articles->renderPager(array(
                        'baseUrl' => '/sector/'.$currentCat.'/'
                    ));

     

    I tried this and get the same results

    2 hours ago, gmclelland said:

    What is the url for page2?

    domain.com/news/2018/page2

    Just reading up on whitelist now.

  2. Hello All,

    Iam having a slight problem with pagination, Ive setup a news page with pagination which works fine. I have also setup a segment that list all the posts for a set year using the same template. for example news/2018 when I try and display page2 I get a 404 any idea? 

    The code Ive used. 

    <?php if ($input->urlSegment1) {
               $start = strtotime(date("{$input->urlSegment1}-01-01"));
               $end = strtotime(date("{$input->urlSegment1}-12-31"));
                $results = $pages->find("template=news-item|news-item-right-gallery|news-item-left-gallery,  news_date>=$start, news_date<=$end, limit=15, sort=-news_date");
            }else{
              $results = $pages->find("template=news-item|news-item-right-gallery|news-item-left-gallery, limit=15, sort=-news_date");
            }
    
     foreach($results as $result) {?>
         News template
    
    
    <?php } 
            $pagination = $results->renderPager();
            echo $pagination; ?>

    Cheers

    Jon

  3. 6 hours ago, Wanze said:

    The line in question is: 

    
    $isTranslatable = $info['translatable'] ?? false;

    The "Null coalescing" operator was introduced with PHP 7 - are you sure you're using PHP 7.2? ? 

    Nope Iam no longer sure, turned out to be 5.6 set in cpanel and 7.2 in whm. ?

    Thanks for your help ? 

    • Like 1
  4. Hello,

    Iam just trying to install the module but getting the following error any ideas? :- 

    "Parse Error: syntax error, unexpected '?' (line 50 of /home/skyewalkerhostel/public_html/site/modules/SeoMaestro/InputfieldSeoMaestro.module.php) "

    Using PHP7.2 & PW 3.0.128

  5. Hello All,

    I'am struggling a bit (or maybe approaching this wrong). I've creating a simple events section which has a number of categories setup as pages. I've used a multiple Page Reference in the individual events to selects which categories the event may fall under

    I'am in the process of setting up sidebar which lists all the categories which is fine. Now i would like to have the number of events in brackets at the end. However I cant seem to check the page reference for the category page ID, Ive used the following code :-

     

    <?php 
    $cat = $pages->find("template=event_cat, sort=title, include=hidden");    
    foreach ($cat as $cats) {
    	$count = $pages->count("template=event, event_cat*={$cats->id},");
    	echo "<li class='uk-active'><a href='{$cats->url}'>{$cats->title} ({$count}) </a></li>";
    }
    ?>

    Is it something to do with using the ID with *=

    Cheers

    Jon

  6. On 5/29/2018 at 2:57 PM, ethanbeyer said:

    @Jon this sounds a little strange. Reading most of your comment, I would think that this might have something to do with your Office365 having sending limits that you're going over. The TLS issue is what makes it weird, though - because if it was a limits problem, that would not be happening.

    Is there anything in the logs that gives what error is encountered, rather than saying it just stops sending?

    Hello Ethan,

    Nothing in the logs I've now setup sendinblue and this has resolved the issues so I assumes its 365 like you suggested. The limit would be odd though as its not sending out that many emails

    Cheers

    Jon

  7. Hello, Ive but using the module for a few month now (its great thanks!)

    Over the last couple of weeks I have been experiencing problems. Iam using a office 365 exchange account, which just randomly stops sending. If I run the test is setting it fails. After that if I deselect TLS save a then retick TLS save and test it works again. Any ideas what may be causing this?

  8. Hello, just wondering if the following is possible ive setting up a uikit menu. I have adjusted the inter_tpl to wrap the some additional DIVs around the UL. Which works fine I also need to have the inner inner UL with a different DIV around them or at the very least just default back to a UL without the additional tags. Ive tried the following code but this seems to close the the first UL of the menu after the first dropdown occurrence

        $menu->addHookAfter('getInnerStringOpen', null, 'customInnerString');
        function customInnerString(HookEvent $event){
            $item = $event->arguments('page');
            if($item->numChildren(true) && count($item->parents) > 1){
                $event->return = '<ul class="testtest">';
            }
        }

      

    Iam trying to achieve this

     

    <ul>
      <li>Level 1 Nav</li>
      <li class="has-sub">Level 2
    		<div class="submenu">
        	<ul class="has-sub">
              <li>Item 2.1</li>
              <li class="has-sub">Level 3
                <div class="anothersub">
                  <ul>
                    <li>Item 3.1</li>
                  </ul>
                </div>
              </li> 
              </ul></div>
       </li>
    </ul>

     

  9. Hello All,

    Probably something simple but I cant for the life of my figure out what ive done!

    I have a live site set to default to HTTPS:// via .htaccess. I have taken a copy of the site defaulted the .htaccess file however the site is still adding HTTPS in front of the local path any ideas what ive missed? Iam using WAMP. I have installed a blank PW site to confirm that it related to the site rather than wamp setup

    Cheers

    Jon

  10. Installed Tracy and can see the following error being thrown. Must be something to do with the amount of images added by the client 

    Error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 23040 bytes) (line 330 of /home/glenetive/public_html/wire/core/ImageSizer.php)

  11. Hello,

    I've had a client create a page using a template which has been used a number of times before. I can view the page front end but when I try and edit via admin the page just constantly trys to load any idea?

    I've duplicated the page and get the same effect. I've created a new page using the same template which works fine also.

    Jon

  12. Hello All,

    Ive just went to install HannaCode's but during the install I got a interernal server error. Ive enabled debuge and get the following error

    Any ideas?

    Compile Error: Cannot redeclare class FormBuilder (line 33 of /home/sites/4b/8/8697d44457/public_html/site/modules/FormBuilder/FormBuilder.module) 

  13. Hello All,

    Ive setup a redirect however on the following is added to the end of the redirect ?it=nameofoldpage any ideas how to stop this? This only happens when I view the redirect without a / at the end

    Cheers

    Jon

  14. Hello Mike,

    I dont believed its jumplinks related as  disabled it and tried a .htaccess redirect and received the same result. Site is root and using latest dev version  3.0.92

    Any ideas it that case? 

    Jon

  15. Hello All,

    Ive setup a redirect using jump links but my redirect url is adding ?it=redirectpagename any ideas how to stop this? This only happens when i view the redirect without a / at the end

    Cheers

    Jon

  16. @adrian Thanks for that works prefect :)

    1 hour ago, adrian said:

    I expect you are changing the main default in the module settings. This populates the value on the Settings tab of the page that is being protected, but if a page has already been protected, you will need to change the value for that page. It allows for different messages for different pages. Does that make sense?

     

     

    • Like 1
  17. @adrian Thanks for your reply, I just wanted to customise the login page a bit to match my site a bit more. I have managed to do this with the standard template now. One thing I cant seem change is the default Login Message Ive set this in the module settings but the changes arent reflected in the frontend?

    Cheers

    Jon 

×
×
  • Create New...