saurav2785
Forum Replies Created
-
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Swipebox and jQuery 3.5.xHi
https://github.com/mho79/swipebox/
This JS code worked for me and fixed the issue, So i would try this one.
Thanks a Million @netzgestaltung
We face the same issue, No field is being displayed on the latest version
Forum: Fixing WordPress
In reply to: Dashboard CSS not loadingI have done all this but nothing seems to be working in this scenario
Forum: Fixing WordPress
In reply to: Dashboard CSS not loadingOK i did add it at the end of the WP-config filebut it does not seems to change anything… what was your plan with this…
Is there any other steps that needs to be followed after adding this.
Forum: Fixing WordPress
In reply to: Dashboard CSS not loadingadpower(.)ae/blog
Forum: Fixing WordPress
In reply to: Dashboard CSS not loadingWell i tried switching it to default and was able to do it using the dashboard but the css for the dashboard did not work with the default theme as well
What else can we do… Any suggestions
Forum: Plugins
In reply to: [Contact Form 7] contact form 7 doesn't send emailsForum: Plugins
In reply to: [Contact Form 7] Contact Form 7 not working after update to WP 3.6Hi
I am also using the same version but its not working and i am also getting the same issue as Greg..
Please of any one has any solutions or Greg if you find one please do let me know…
Thanks
Forum: Plugins
In reply to: [Contact Form 7] contact form 7 doesn't send emailsHi
Does any one has a solution for the contact forms not working on WordPress 3.6
Please share the solution people. had contact form 7, it was working fine but now none are…
Please advice.
Thanks & Regards
Saurav JaiswalForum: Plugins
In reply to: [Grid Products] Example of full short-codeHi
I did use this using the shortcodes like [product] for grid
and product view=”list”] for list view…
I wanted to ask if we can make a button or link so that the user can switch between the grid and list view… also wanted to check if we can use the same button method to give them to sort between particular categories or so… all on a single page…
May be some one has done it with php or ajax use… please help…
Thanks for all the help in advance
Forum: Plugins
In reply to: [RSS to Post] Post getting deletedHi
I have been facing this issue for a couple of days…
i have a cron plugin installed on my site but i dont think it should create this issue but then just to put the whole scenario i am letting you guys know… its RSS 2 POST…I have another list post published that are being posted manually… but i checked the post that i had published in the last two days, they were not all listed so some of them looked to be deleted, also some of the post had missing content like the featured images and some content…
But then i check the DB if they were present there or not, to my surprise they were present so they are not deleted actually but they are not listed not on the live site and neither on the dashboard….
ANother issue is that i have created a couple pages with custom template and when ever i add them to the primary menu they do get added but after some time when i check the menu does not have those two pages listed in it and those two pages are the pages which displays the mysterious post, one that are being added through the plugin and the other that show the post published manually by me…
Has any one got any idea what seems to be the problem over here… i have never heard of anything like it before…
Forum: Everything else WordPress
In reply to: Post being deleted and not displayed on the siteHi Esmi
Thank you so much for the assistance… i do know about the harm in usig Modlook and this is the first time i have used it… i even said that i am using this tag because of the issue not getting resolved since two days…
But i will make sure not to use it again…
As you said i just upgraded the wordpress installation to the latest version..
I was also looking at the DB and found out that all featured images that i saved has the same name.. images/jpeg … may be i am wrong…
I am also going to check the site out on the default installation and then post the result….
But other than that is there any thing else that i could try that might be the reason for this kind of an issue…
Forum: Themes and Templates
In reply to: Tags Search pageForum: Themes and Templates
In reply to: Tags Search pageHi
I am Using a Custom theme developed on top of a Blank theme developed by Chris Coyier saw this on a tutorial on youtube….
The Archive.php file has the following code…. so do i make changes in this or create a new file called tag.php with the structure that i desire….
<?php get_header(); ?> <div class="search-nav"> <div class="search-section"> <span style="margin-left:50px; margin-right:10px; float:left;"> <div class="website_login"><a href="#">Login</a> / <a href="#">Register</a></div> <form role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>"> <input type="text" class="home_pge_input_field" style="line-height: 2; float: left; width: 200px;" placeholder="Search Site" value="" name="s" id="s" /> <input type="image" src="<? bloginfo('stylesheet_directory'); ?>/images/search_icon.png" width="32px" height="32px" style="margin-top:2px;" alt="Search" /> <!--<input type="submit" id="searchsubmit" value="Search" />--> </form> </span> </div> <div class="menu-section"> <div class="nav"><?php wp_nav_menu(array('theme_location' => 'primary-menu')); ?></div> </div> </div> <!--End of searchnav --> <div class="main"> <div class="left-sidebar"> <?php get_sidebar(); ?> </div> <div class="maincontent"> <?php if (have_posts()) : ?> <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?> <h2>Archive for the ‘<?php single_cat_title(); ?>’ Category</h2> <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?> <h2>Posts Tagged ‘<?php single_tag_title(); ?>’</h2> <?php /* If this is a daily archive */ } elseif (is_day()) { ?> <h2>Archive for <?php the_time('F jS, Y'); ?></h2> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> <h2>Archive for <?php the_time('F, Y'); ?></h2> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> <h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2> <?php /* If this is an author archive */ } elseif (is_author()) { ?> <h2 class="pagetitle">Author Archive</h2> <?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> <h2 class="pagetitle">Blog Archives</h2> <?php } ?> <?php include (TEMPLATEPATH . '/inc/nav.php' ); ?> <?php while (have_posts()) : the_post(); ?> <div <?php post_class() ?>> <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> <?php include (TEMPLATEPATH . '/inc/meta.php' ); ?> <div class="entry"> <?php the_content(); ?> </div> </div> <?php endwhile; ?> <?php include (TEMPLATEPATH . '/inc/nav.php' ); ?> <?php else : ?> <h2>Nothing found</h2> <?php endif; ?> </div> </div> <!--End of main --> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: Tags Search pageHi Guys
Thank you so much for the prompt reply, I have another question i have a arheive.php but no tag.php… so if i create a tag.php will it restyle the page according to my needs or do i go and edit the archive.php to get the modification… if you want i can post the codes over here….