Forum Replies Created

Viewing 15 replies - 1 through 15 (of 26 total)
  • Hi

    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

    Thread Starter saurav2785

    (@saurav2785)

    I have done all this but nothing seems to be working in this scenario

    Thread Starter saurav2785

    (@saurav2785)

    OK 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.

    Thread Starter saurav2785

    (@saurav2785)

    adpower(.)ae/blog

    Thread Starter saurav2785

    (@saurav2785)

    Well 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

    Hi

    @daxcastro can you tell me which plugin did you end up using….

    Thanks for the help in advance

    Hi

    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

    Hi

    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 Jaiswal

    Hi

    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

    Thread Starter saurav2785

    (@saurav2785)

    Hi

    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…

    Thread Starter saurav2785

    (@saurav2785)

    Hi 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…

    Thread Starter saurav2785

    (@saurav2785)

    Hi

    @esmi that works pretty much how i wanted it to work, so thanks for the help. Really appreciate it a lot…..

    @devtard and @jose thanks for your input as well because it really gave me a better understanding of this particular case which will definitely make my life easier in the future….

    Thread Starter saurav2785

    (@saurav2785)

    Hi

    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(); ?>
    Thread Starter saurav2785

    (@saurav2785)

    Hi 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….

Viewing 15 replies - 1 through 15 (of 26 total)