Mahmud Hamid
Forum Replies Created
-
Forum: Reviews
In reply to: [Norsani] Worst plugin and rude & cheap customer support@sterndata Is there any way to protect plugin authors from fudge and fearless ratings?
Forum: Plugins
In reply to: [Norsani] Happy to find you hereHi, If you might need any further help, shoot us an email to support@mahmudhamid.com
Forum: Reviews
In reply to: [Norsani] Requires off-site download to work.If making LazyEater work on other themes will only require a less than one day of work, why would we ignore that from the begging of the development, while this step was very important in increasing usage of the plugin?
I had some time to notice your review only after we completed all important updates for LazyEater 1.1.4 and LazyEater 1.1.3 which supporting other themes was a part of the plan.
I’m not saying change your rating, I’m just saying be fare!! I’m not against the 1 star rating, if it really gave us some points to review and improve the plugin. This plugin was on CodeCanyon.net before we decided to make it free, just to make more people benefit from it. Have you ever tested Frozr WP theme? to make a “Risk” scenario?
However, Thank you for your review and rating.
Forum: Reviews
In reply to: [Norsani] Requires off-site download to work.Have you ever heard that WooCommerce worked on a theme that did not support it? Have you took some time and read this article on how to support LazyEater on themes? You are not stick to use the Frozr theme! Have you ever asked your self why would the world think of damaging your system?
Immediately adding a 1 star rating to a plugin that we spent more than 6 months of developing just because a “Risk feeling” is very annoying!!
Stop attacking developers.
Forum: Themes and Templates
In reply to: if post has video use it as thumbnailafter searching i found this:
<?php if ( get_post_meta($post->ID, "_videoembed", true) || get_post_meta($post->ID, "_videoembed_manual", true) ) { ?> <div class="video"></div> <?php } else if ( has_post_thumbnail($thumbnail->ID) ) { echo '<a href="' . get_permalink( $thumbnail->ID ) . '" title="' . esc_attr( $thumbnail->post_title ) . '">'; echo get_the_post_thumbnail($thumbnail->ID, 'medium' ); echo '</a>';?> <?php } else { ?> <a href="<?php the_permalink() ?>"><img src="<?php bloginfo('template_url'); ?>/images/an.png" alt="" /></a> <?php } ?>now what should i add in the <div class=”video”></div> so it display the video????
Forum: Themes and Templates
In reply to: show the total number of posts in your blog except one categorydone thanks π
Forum: Themes and Templates
In reply to: show the total number of posts in your blog except one categoryhow do i output the post count from the_post object?
Forum: Themes and Templates
In reply to: display the posts count of the selected categorythanks Chip, it worked now π
Forum: Themes and Templates
In reply to: display the posts count of the selected categoryits not solved yet :S
Forum: Themes and Templates
In reply to: display the posts count of the selected categorythanks Chip, i was using this code:
<?php $cat = get_the_category(); $cat = $cat[0];?> <?php echo $cat->cat_name;?> <?php echo $cat->category_count; ?>and it was running fine but when i tried to add another query for another category in a second loop in my index, it wont work it would show me the name of the new category but the count of the previous query category.
so i was thinking maybe my method is wrong in such case and should use another one.
hope i could solve this matter.
thanks for your kind help, πForum: Themes and Templates
In reply to: display the posts count of the selected category<?php $args = array( 'category_name' => 'myworks', 'showposts' => '3', ); $the_query = new WP_Query( $args ); ?> <div id="featured-info"> <div id="featured-name" ><p><?php echo $args['category_name'] ;?></p></div><div id="featured-count"><p>total postsΒ <?php $customcats = get_categories(); $categorycount = $customcat->count; echo $categorycount; ?></p></div></div> <?php while ($the_query->have_posts()) : $the_query->the_post(); ?>this is the code i used
Forum: Themes and Templates
In reply to: Modify post title textfirst add a class attribute to posts titles for example in your index file.
next go to your css file and add your style.Forum: Themes and Templates
In reply to: display the posts count of the selected categorythanks Chip, but didn’t work it shows nothing π