Jump to content

Roych

Members
  • Posts

    383
  • Joined

  • Last visited

Everything posted by Roych

  1. It is for main menu and sometimes a link in main menu has to be redirected to external link or non clickable. Sometimes parrent menu has to be non clickable but childrens normal. So the code above is working great for internal and external redirecting (linking) all I need is the posibillity to make it non cliickable also, so maybe with # or something. So for that kind of page I would give it a redirect template and just enter the url or #. Don't have any screenshot of something similar Hope u understand ...
  2. Thank you for answer, but not really sure how could this help me It's just sometimes the parent menu need's to be unclickable but not sure how to do that from my code above as I'm not a coder, so any help is appreciated. Thank you R
  3. Hello I need some help with redirecting. I have create a template called (redirect) and AssistedURL field called (redirect_link) for redirecting a page if necessary. In template I've added: <?php if($page->redirect_link) $session->redirect($page->redirect_link); ?> redirect is working, but is it possible to create a link non clickable also, maybe with placing # for link? If I place # now it gives the whole link of the site with /# at the end and gives blank page. So placing (#) would disable a link totaly or something. Hope u understand what I mean Thank you R
  4. Hello, Im having some problems making my menu to look like it should. I tried everithing, just can't figure it out. Any help is appreciated. Im using MarkupSimpleNavigation. My HTML looks like: <ul class="navbar-nav ml-auto"> <li class="nav-item active"> <a class="nav-link" href="index.html"><span class="sr-only">(current)</span>Home</a> </li> <li class="nav-item dropdown drop_single "> <a class="nav-link dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false" href="javascript:void(0)">Pages</a> <ul class="dropdown-menu dd_first"> <li><a href="page-aboutus.html">About Us</a></li> <li><a href="page-team.html">Team</a></li> <li><a href="page-member-details.html">Profile</a></li> </ul> </li> </ul> I tried with: And many other combinations ... <?php $options = array( 'parent_class' => 'nav-link dropdown-toggle', 'current_class' => 'current', 'has_children_class' => 'nav-item dropdown drop_single', 'levels' => true, 'levels_prefix' => 'level-', 'max_levels' => null, 'firstlast' => false, 'collapsed' => false, 'show_root' => true, 'selector' => '', 'selector_field' => 'nav_selector', 'outer_tpl' => '<ul class="navbar-nav ml-auto">||</ul>', 'inner_tpl' => '<ul class="dropdown-menu dd_first">||</ul>', 'list_tpl' => '<li%s>||</li>', 'list_field_class' => '{nav-item dropdown drop_single}', 'item_tpl' => '<a href="{url}" class="nav-link dropdown-toggle"><span class="sr-only">(current)</span>{title}</a>', 'item_current_tpl' => '<a href="{url}"><span class="sr-only">(current)</span>{title}</a>', 'xtemplates' => '', 'xitem_tpl' => '<a href="{url}" class="nav-link"><span class="sr-only">(current)</span>{title}</a>', 'xitem_current_tpl' => '<span>{title}</span>', 'date_format' => 'Y/m/d', 'code_formatting' => false, 'debug' => false ); $treeMenu = $modules->get("MarkupSimpleNavigation"); // load the module echo $treeMenu->render($options); ?> But can't get it right, not sure where Im wrong here. Thank you very much R
  5. Got it working It works perfect! Great way to create custom settings for the whole site. Thank you very much R
  6. hello, thank you for answer, not sure what you mean by this ... I'we created a template (style.php) selected text/css in file tab and thicked the append and prepend file. What now, what to do with this template. Do I give it some fields for styles like background image, colors, etc or ... Not sure what to do with it. And how do I connect css to it. Not sure I understand completely. I'm new to PW. Thank you R
  7. Hello, Im having some problem figuring how to do some custom settings for my site. I'd like to create settings page in my admin for changing some css and some images that are now fetched from css. Do I have to delete code from css and add it to template file like.. from this (css file): body{ background:#3d5e93 url(../img/background/1.jpg) no-repeat; } to this (template file): <style> body { background:<?=$page->bgcolor-field ?> url(<?=$page->bgimage-field ?>) no-repeat; } </style> or is there a way to do this the easyer way. Or maybe fetch this directly from css, or ...? How and where axactly do I put those custom fields for those settings. Hope u understand what I mean. Thank you R
  8. Sorry forl late response. Exactly what I needed, working great Thank you very much Didn't know about "shuffle" R
  9. Hello, need your help I have repeater with only one image field and I would like it to be fetched randomly. It is used for a background images on a site. my code: <?php foreach($pages->get('/settings/')->BackgroundImages->getRandom() as $bck): ?> <?php $bckgimage = $bck->bgimage->first(); ?> <li><img data-fade='2000' src="<?php echo $bckgimage->url; ?>" alt="" /></li> <?php endforeach; ?> But it's not working and couldn't find the right answer on a forum .. not sure how to do this Thank you R
  10. Hello, I need some help with changing the URL for default language pages. I have two languages one is hidden at the moment for future use. Now I would like the default language URL to be only the site name and a page without /en how can I achieve that. I want my URL to be like www.mysite.com/jobs and not www.mysite.com/en/jobs. Now only the home page has the right URL all other have /en. ... I looked through the forum but no luck so far. Thank you R Ok, I got it, I just had to delete the EN in my homepage setting and now it is working, I found it on a forum. Thank you anyway
  11. Hello, I'm having this z-index problem within repeater any ideas how to solve this? I searched the forum but no luck. Outside repeater it works fine! Thank you R
  12. Just found out what is causing it, it's the SounCloudembed Formater. the field only works if the SoundCloud link is present, if you don't enter the SC link but only normal text, then the field is not showing Up. I need this working because sometimes there will be SC embedded and sometimes not. Would be nice if this was all in one Wysiwyg field Any idea how to fix that, maybe. Thank you R
  13. Hello, I'm having some weird problem with textarea(ckeditor) field on my new site that I'm working on. The field is showing only on one template and won't show up on any other. All other fields are working fine. Never had this problem before. Any ideas? Thank you, R
  14. Hello, sorry for late response. I'm using the "ProcessWire 3.0.62 © 2017" and "TextformatterSoundcloudEmbed 1.0.0" from HERE I've gone through the fix's and manage to install the module but somehow it just show's me the link and it's not creating a widget. I'm using ckEditor with added textformater "SoundCloud Embed". The field is in a repeater maybe this is the problem? Or Am I missing something? Thank you R P.S.: I tried it out of repeater and it seems to work. Any idea how to use it in a repeater?
  15. Hello Is there any update on SoundCloud textformatter module? I can't get it to work at all. I can't even install it? If I put it in modules I get error Parse Error: syntax error, unexpected '&' (line 117 of /home/ ----- /site/modules/TextformatterSoundcloudEmbed/TextformatterSoundcloudEmbed.module) Any other module for this or ... Thank you R
  16. Yees its working great now Only had to put the " : " on your code first line. No tracy debugger. Now I have bg image on all my pages and one custom settings page Thank you R
  17. Hello, I need some help with repeater images to show on another pages. I have a page called "settings" a template called "settings" and repeater with image field. I need to show that repeater on different pages, but somehow can't figure it out how to.. I have this atm ... <?php foreach($pages->get('template=settings')->BackgroundImages as $bck): ?> <?php $bckgimage = $bck->bgimage->first(); ?> <li><img data-fade='2000' src="<?php echo $bckgimage->url; ?>" alt="" /></li> <?php endforeach; ?> I searched the forum but no success :\ Any help is appreciated Thank you
  18. Yes, thank you this one is working perfectly Good to know this, wouldn't have found that one out myself. Thank you R
  19. Thank you for help I tried something similar, but had no luck. I tried your code It gave error than I realised one ")" was missing. But still not working, sadly. Nothing shows up. Any ideas? <?php if (date('d-m-Y') == date('d-m-Y', $single->Start_date)): ?> <div class='Danes-text'>TODAY!</div> <?php endif; ?> This is what I have now ... R
  20. Hello, I need you help again with this Everything is working fine but I need to put another line of text like "TODAY" if a date is today. <?php $events = $pages->find('template=calendar-post, limit=8, Start_date>=today, sort=Start_date'); ?> <?php if(count($events)): ?> <?php foreach($events as $single): ?> <!-- Event --> <li> <div class="date"> <span> <span class="day"><?php echo strftime("%d", strtotime($single->Start_date)); ?></span> <span class="month"><?php echo strftime("%h", strtotime($single->Start_date)); ?></span> <span class="year"><?php echo strftime("%Y", strtotime($single->Start_date)); ?></span> </span> </div> <div class="event-content"> <h6><a href="<?=$single->url?>"><?=$single->title?></a></h6> <ul class="event-meta"> <li><i class="fa fa-clock-o" aria-hidden="true"> </i> <?php echo strftime("%H:%M", strtotime($single->Start_date)); ?><sup><?= $out = __("h"); ?></sup></li> <!-- <div class='Danes-text'>TODAY!</div> --> </ul> </div> </li> <!-- /Event --> <?php endforeach; ?> <?php else: ?> <div style="font-size: 14px;margin-top:-15px;color: #63b2f5;"><?= $out = __("No upcoming events at this time!"); ?></div> <?php endif; ?> You can see where I wan't to put in the TODAY text. Can this be done? I tried if elseif else but no luck. Any ideas how can this be done? Thank you in advance R
  21. Hello, I like this but how do I use this within <?php foreach($page->downloadi as $download): ?> <a href="<?=$download->fajli->url ?>">Download</a><?=$download->Content ?> <?php endforeach; ?> I'm using pagetable field for adding my "downloads" Thank you R
  22. I agree completely. But still learning here, hehe. Thank you R
  23. Yes now it is working great. I got it working with my code also "I think". I used my version of code and put if-else inside like you've said and somehow works. <?php foreach($page->Slides as $Slides): ?> <?php $image = $Slides->images->first(); ?> <?php if ($Slides->Link): ?> <li data-transition="<?php echo $page->Slide_Effect; ?>" data-slotamount="7" data-link="<?=$Slides->Link ?>" data-target="_blank" > <img src="<?php echo $image->url; ?>" alt="<?php echo $image->description; ?>"> <div class="tp-caption" data-x="100" data-y="115" data-speed="700" data-start="1000" data-easing="easeOutBack"><h2><?=$Slides->title ?></h2></div> </li> <?php else: ?> <?php $image = $Slides->images->first(); ?> <li data-transition="<?php echo $page->Slide_Effect; ?>" data-slotamount="7" data-target="_blank" > <img src="<?php echo $image->url; ?>" alt="<?php echo $image->description; ?>"> <div class="tp-caption" data-x="100" data-y="115" data-speed="700" data-start="1000" data-easing="easeOutBack"><h2><?=$Slides->title ?></h2></div> </li> <?php endif; ?> <?php endforeach; ?> I will use your code ofc, shorter and probably better. Thank you very much R
  24. Thank you for reply I tried your suggestion but I get Parse Error: syntax error, unexpected 'endif' (T_ENDIF) ... Error. not sure what is wrong here Thank you R
×
×
  • Create New...