fix for page selector in 'simple slider'

Permalink 1 user found helpful
For anyone not able to select a page on a vivid simple slider item, here's how to fix it:

in /packages/vivid_simple_slider/blocks/vivid_simple_slider/elements/page_selector.php remove the slash before 'tools' on the url in line 6:

<?php echo t('Choose Page')?>" href="<?php  echo View::url('/'); ?>/tools/required/sitemap_search_selector?cID=0"


like this:
<?php echo t('Choose Page')?>" href="<?php  echo View::url('/'); ?>tools/required/sitemap_search_selector?cID=0"


I guess this will also work in simple carousel, as it has the same error not being able to select pages.

cheers!

buurvrouw
 
moma0503 replied on at Permalink Reply
moma0503
This issue was being a real pain in my backside. Your solution fixed it. Who woulda thought it would be so simple.