vahidd
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Log] Simple and neat but…This is one of my very very first plugins and I think it might have a lot of problems. I’ll consider all your things in next update.
Thanks for your attention.Forum: Reviews
In reply to: [Identifying Iranians] this is very useful for usThank you dear ali,
I’m glad you like it.Forum: Fixing WordPress
In reply to: "Add Media" buttonI looked to this code, and it hasn’t any problem, i think your light box plugin make this problem, deactivate it and try another lightbox plugin.
Forum: Fixing WordPress
In reply to: "Add Media" buttonI think problem is on your single.php file.
please attache your single.php file here.Forum: Plugins
In reply to: No Right Click on ImagesI think when a larger image will opening it’s outside of your wordpress and your plugin “No Right Click Images”!
You should do something to remove link to larger version.Forum: Fixing WordPress
In reply to: Can I add something like "rel=$post_id" to post thumbnail?try this:
<img src="#something" rel="#<?php echo $post->ID; ?>"/>
Forum: Fixing WordPress
In reply to: Open in New PageI visit, your site, put this code into your header.php file, after <head> and before </head> :
$(document).ready(function(){ $('a[title="Home"]').removeAttr("target"); });
if it didn’t work, attache your header.php file here.
Forum: Fixing WordPress
In reply to: Can't Find this Hover color in firebug?excuse me, my English not good, you wanna make each month different color?
Forum: Fixing WordPress
In reply to: Author UrlFirst, add this to your functions.php:
function authors_function( $atts ) { return wp_list_authors('exclude_admin=0&optioncount=1&show_fullname=1&hide_empty=1'); } add_shortcode( 'authors', 'authors_function' );
Then use this shortcode into you editor:
[authors]
Forum: Themes and Templates
In reply to: How do I add a sidebar to a Fullwidth page ?Can you show me a online demo?
Forum: Fixing WordPress
In reply to: All Admin pages gone blankChange
define('WP_DEBUG', false);
To:
define('WP_DEBUG', true);
in wp-config.php
and then the errors will be shown.Forum: Themes and Templates
In reply to: How do I add a sidebar to a Fullwidth page ?Try this:
<?php /** * Template Name: Full Width, no sidebar(s) */ get_header(); ?> <div id="main-fullwidth"> <?php if (have_posts()) : while (have_posts()) : the_post(); /** * Find the post formatting for the pages in the post-page.php file */ get_template_part('post', 'page'); if(comments_open( get_the_ID() )) { comments_template('', true); } endwhile; else : get_template_part('post', 'noresults'); endif; ?> </div><!-- #main-fullwidth --> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Need Help Regarding Embaded Videos in WPit’s easy, use below link:
https://www.mvestormedia.com/easy-w3-total-cache-configuration/Forum: Plugins
In reply to: Visual Editor will not openI think you have a plugin that not compatible with wordpress 3.5, deactivate plugins one by one to fix it.
Forum: Fixing WordPress
In reply to: Need Help Regarding Embaded Videos in WPI think you need to caching your pages:
https://www.ads-software.com/extend/plugins/w3-total-cache/