ragout
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: After migration I get unexpected T_STRING in theme_options.phpnope, omnitheme is a theme I developped myself.
Forum: Fixing WordPress
In reply to: After migration I get unexpected T_STRING in theme_options.phpHey Robert, I tried pasting into a new file but that didn’t help.
The hosting the site is on doens’t have a very advanced menu for php option, just safe php on/off (exec, passthru, shell_exec, system, proc_open, popen) I have turned the safety off.
What should I ask the hostingprovider if I would contact them?Thanks!
Forum: Fixing WordPress
In reply to: After migration I get unexpected T_STRING in theme_options.phpjherrington?
Forum: Fixing WordPress
In reply to: pressing on links gives an error in chrome dev windowbump… I still haven’t found out what causes this error
Forum: Fixing WordPress
In reply to: pressing on links gives an error in chrome dev windowAnyone?
Forum: Fixing WordPress
In reply to: pressing on links gives an error in chrome dev windowsomehow the browser or wordpress or my server aren’t allowing the link to be used but if you see the code it’s nothing special and shoudl work out of the box
Forum: Fixing WordPress
In reply to: Centering header imagethe full code to place in style.css is
div.title {width:100%;} div.title a {display:block;text-align:center;}
Just put it somewhere and it will work.
Forum: Fixing WordPress
In reply to: Centering header imagein your css file ??
Forum: Fixing WordPress
In reply to: Centering header imagegiv you <div class=”title”>
the following css code:
width:100%;
margin:0 auto;Forum: Fixing WordPress
In reply to: After migration I get unexpected T_STRING in theme_options.phpanyone familiar with the issue?
Forum: Fixing WordPress
In reply to: After migration I get unexpected T_STRING in theme_options.phpIts in the top of my functions.php
<?php /* Include theme options */ require_once (TEMPLATEPATH . '/includes/theme_options.php');
Forum: Fixing WordPress
In reply to: Getting isotope to work in wordpressAs you can see i’ve commented out the imagesloaded because it causes isotope to fail when I use it…
Forum: Fixing WordPress
In reply to: Getting isotope to work in wordpressI have fixed this issue by including everything in my footer manually instead of letting functions.php register everything.
My footer looks likes this now:
</div> <!-- /Content of the site --> <!--</div> /Inner of the site --> </div> <!-- /Wrapper of the site --> <?php wp_footer(); ?> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="<?php bloginfo( 'template_url' ); ?>/includes/isotope.pkgd.min.js"></script> <script src="<?php bloginfo( 'template_url' ); ?>/includes/imagesloaded.pkgd.min.js"></script> <script> var $container = $('#worksmenu')/*.imagesLoaded( function()*/; // init $container.isotope({ // options itemSelector: '.worksimage', layoutMode: 'masonry' }); var $container = $('#worksmenu2')/*.imagesLoaded( function()*/; // init $container.isotope({ // options itemSelector: '.worksimage2', layoutMode: 'masonryHorizontal', rowHeight: '650' }); </script> </body> </html>
Forum: Hacks
In reply to: Change Sort Order of Image Attachment PagesI’ve tried using different lightbox scripts and they all work well with the gallery order.
The problem with lightboxes of stuff like that is that I can’t seem to find a plugin that displays a title AND caption AND description and also does not realy let me place these anywhere else then below the image aswell as the placement of the close and next/prev buttons. They all are positioned absolute inside the lightbox container and css cannot get them to anywhere outside that.Forum: Plugins
In reply to: [Simple Lightbox] Trying to get a title AND caption to show upThanks, going wait for that to come. Do you have an indication on when this is going to be completed? ??