Juztin
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Loading time issueNevermind I just read an older post mentioning the issue of the slow speed with huge data
Great work nonetheless 🙂
Forum: Themes and Templates
In reply to: How to delete sidebar from several pagesNice
will try thatThanks for your help 🙂
Forum: Themes and Templates
In reply to: How to delete sidebar from several pagesI did replace them with the code that I wanted
as for what line is causing the error
it is this line
if ( in_array( $post->ID, $mypages ) && get_post_type() != ‘portfolio’)
Thanks for the help 🙂
Forum: Themes and Templates
In reply to: How to delete sidebar from several pagesI did use this code:
if ( ( $post->ID != 20 && $post->ID != 54 ) && get_post_type() != ‘portfolio’)
and it works fine
thanks 🙂
Forum: Themes and Templates
In reply to: How to delete sidebar from several pagesI used this code
<?php
$mypages = array( ’20’, ’54’, ’78’, 123′);
if ( in_array( $post->ID, $mypages ) && get_post_type() != ‘portfolio’)
get_sidebar();?>Forum: Themes and Templates
In reply to: How to delete sidebar from several pagesit works but it gives me this error
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ‘)
Viewing 6 replies - 1 through 6 (of 6 total)