Nimesh
Forum Replies Created
-
Forum: Plugins
In reply to: [Email newsletter] getting wrong messageI think we get the subscibe email and admin also get email, than i think message should be come like “Subscribed successfully.”
ok
Forum: Plugins
In reply to: [Contact Form 7] How to add dynamic hidden field value to our formok thank you.
Forum: Fixing WordPress
In reply to: can not login at admin side.thank yuo.
greate your suggestion was help me.
thank you.ok thank you.
Forum: Plugins
In reply to: [Post Layout] Can not see add on post/pagegreate it has been working for me, thanks stefano lissa.
Forum: Fixing WordPress
In reply to: Put specific product categories on pageYou can use the code like,
<?php
query_posts( array( ‘category__and’ => array(1,3)));
while (have_posts()) : the_post();
the_content();
endwhile;
?>Forum: Fixing WordPress
In reply to: Display two columns, remove blank spacego at media and select the image which you want to keep in their original height and edit it at that place you got the scal image tab where you hwill see the original image dimention.
Another way if you have use the feature image, so in code you can write the code like <?php the_post_thumbnail(‘full’);?>
Forum: Fixing WordPress
In reply to: Put only 3 footers on mystile themeI have seen in your link, there is 4 footer.
and you want 3, so first you should remove one footer menu from admin, than see the look and than change in css.
thank you.Forum: Fixing WordPress
In reply to: Post Content and Title not showingI have seen in your website, it will be working fine with post title and post content, for ex I have seen this link, https://www.surrealitycomic.com/surreality-crew/ in it title and content display.
So it is or want to tell anything else?Forum: Fixing WordPress
In reply to: php problem@svm2,
Replace this line,
echo '<li><a href="$link">'.$title.'</a></li>';
with this,
echo '<li><a href="'.$link.'">'.$title.'</a></li>';
in for loop.Forum: Everything else WordPress
In reply to: get_the_content() output mess upI have also tried,
echo $pageContent = apply_filters(‘the_content’, $pageContent);
before and after this line,
echo $pageContent = preg_replace(‘/<img class=”ngg_displayed_gallery mceItem”[^>]+\>/i’,”,$pageContent);
but it can not work for me.:(referring to using a shortcode to display a gallery.
I have also refer this link,
https://www.ads-software.com/support/topic/inserting-shortcode-for-single-image-with-editor-button?replies=4
what I want exact.