fzishk
Forum Replies Created
-
Hi WPMU DEV
i am using Host Gator hosting and i think it is shared. i dnot know how to find weather it is shared or VPS?Thanks
FaizanHi WPMU DEV
i am getting same error, and i checked “Enable debug processing”
but there is no Extra error. its just showing :405 Not Allowed
nginx/1.6.2Thanks
Faizanany update?
Forum: Fixing WordPress
In reply to: open external link within a defined pop up windowI have currently one option to make 3 functions separately… but i don’t think so its good idea, how can i manage it in one function ?
Forum: Fixing WordPress
In reply to: open external link within a defined pop up windowhello sir! your code is great and its working fine in my theme… but i want to use this for my 3 menus !
like : menu-item-542
menu-item-544
menu-item-546please tell me how can i handle it?
my site is: Horizon Blanks
and i m using this popup window on my “compare” dropdown menuForum: Fixing WordPress
In reply to: How to support multiple Languages like Urduahhhh finally i found the solution :
i just upload the php.ini file in my wp-admin folder… it was host problem now my WP supporting all languages and special characters…
check its working perfectly:
https://www.theurdutimes.com
islam-qa urdu VersionForum: Fixing WordPress
In reply to: How to Modify ADD Products Admin Template in Woocommercethnx WPyogi ! i just post there and waiting for good response …. ??
Forum: Fixing WordPress
In reply to: How to support multiple Languages like Urdustill waiting for help…
Forum: Fixing WordPress
In reply to: How to support multiple Languages like UrduForum: Fixing WordPress
In reply to: how to show only today's poststhnx alot Problem Solved ??
Forum: Fixing WordPress
In reply to: how to show only today's postsi used that Query but its not working ,i m not gud in Php so can you tell me where i have to use that time Query ?
<?php //The Query $today = getdate(); $query = new WP_Query( 'year=' . $today["year"] . '&monthnum=' . $today["mon"] . '&day=' . $today["mday"] ); $query = new WP_Query( 'category_name=small-Business News&posts_per_page=4&offset=1' ); echo '<ul>'; //The Loop while ( $query->have_posts() ) : $query->the_post(); echo '<li>'; ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail(); ?></a> <h1><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1> <?php echo '</li>'; endwhile; echo '</ul>'; ?>
Forum: Themes and Templates
In reply to: how to make limited paragraph and detail page?boss i used this more tag from post editor but its not working … ??
Forum: Themes and Templates
In reply to: link post tittle to post detailboss problem solved ?? i made a silly mistake :p
this is correct code ??//The Query $query = new WP_Query( 'category_name=small-eham-khabreen&posts_per_page=12' ); echo '<ul>'; //The Loop while ( $query->have_posts() ) : $query->the_post(); echo '<li>'; ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a> <?php echo '</li>'; endwhile; echo '</ul>';
Forum: Themes and Templates
In reply to: link post tittle to post detail//The Query $query = new WP_Query( 'category_name=small-eham-khabreen&posts_per_page=12' ); echo '<ul>'; //The Loop while ( $query->have_posts() ) : $query->the_post(); echo '<li>'; echo '<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>'; echo '</li>'; endwhile; echo '</ul>';
Forum: Themes and Templates
In reply to: link post tittle to post detailyes i have done it : here is the code,