fiazio
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't access wp-admin issue with .htaccessThank you, I’ll contact the hosting and get the details.
Forum: Themes and Templates
In reply to: Make Slider Show Behind Menu and make menu bar transparentHelp Please.
I’ve been trying to edit the css file, with no success.Forum: Plugins
In reply to: CSS conflict with plugin on themeHi there,
thanks for the reply.This is where the form is located: http://smilesforeverpune.com/book-dentist-appointment-dental-care-pune/
The theme I’m using: Subway – Qode.
The twentyfourteen theme has no issue, if you go to the page, and click on the calendar date selector, it does not appear.
help is highly appreciated.Forum: Fixing WordPress
In reply to: Flash Intro to WordPress SiteHi, I found the post that worked for me before:
(Thanks to @sarajty)Hello,
I had the same issue with the index.html file repeating the Flash intro over and over again. I ended up re-naming the page intro.html and it solved the repeat issue.
Then in order for the intro.html page to load at the main URL, and load only once, I changed the index.php file to this:
<?php session_start(); if(!isset($_SESSION['flashIntroShown'])) { $_SESSION['flashIntroShown'] = 1; header('Location: http://yourwebsiteURL.com/intro.html'); } define('WP_USE_THEMES', true); require('./wp-blog-header.php'); ?>I didn’t have to make any changes to the rest of the wordpress site. Hope that helps!
The original post was here.
THANK YOU!
Forum: Themes and Templates
In reply to: Help in changing default template "portfolio" to another text.Closed, marked resolved.
Forum: Themes and Templates
In reply to: Help in changing default template "portfolio" to another text.Hi, the page says “Hands-on support for this item is not currently provided”
Any ways because commercial themes are not supported, I will close the thread.Forum: Themes and Templates
In reply to: Help in changing default template "portfolio" to another text.I’m not sure this would help but here is the single-portfolio.php code:
<?php get_header();?> <section class="container_12"> <div id="primary" class="hfeed"> <?php if(have_posts()) : while(have_posts()) : the_post('');?> <?php lioit_project(get_the_ID()); ?> <div class="mainProject"> <!-- ITEMS SHORT DESCRIPTION --> <div class="ProjectTop"> <div class="boxedTitle"><h4><?php the_title() ?></h4> <div class=" projectsNav"> <?php if(is_single()) : ?> <!--BEGIN .navigation .single-page-navigation --> <div class="navigation single-page-navigation clearfix"> <div class="nav-previous"><?php next_post_link(__('%link', 'lioit'), '<span class="sarrow">%title</span>') ?></div> <div class="portfolio-link"> <a href="<?php $page = get_page_by_title($data['page_portfolio']); echo get_page_link($page->ID) ; ?>"> <?php _e('Back to Portfolio', 'lioit'); ?> </a> </div> <div class="nav-next"><?php previous_post_link(__('%link', 'lioit'), '<span class="sarrow">%title</span>') ?></div> <!--END .navigation .single-page-navigation --> </div> <?php endif; ?> </div> </div> </div><!-- ProjectTop --> <?php $sideoption = get_post_meta($post->ID, 'lioit_sideoption', true); $side_layout = get_post_meta($post->ID, 'lioit_side_layout', true); ?> <?php if($sideoption) { ?> <?php if($side_layout == "leftside") { ?> <div class="projectEntry singlePost grid_8 mainBox rightPad"> <?php get_template_part('/includes/project/project-slider');?> </div><!--End Project Entry --> <div id="sidebar" class="grid_4 sideLeft"> <?php get_template_part('/includes/project/project-side');?> </div><!--End Sidebar--> <?php } elseif($side_layout =="fullwidth") { ?> <div class=" singlePost grid_12 mainBox"> <?php get_template_part('/includes/project/full-slider');?> </div><!--End Project Entry --> <div class="grid_12"> <?php get_template_part('/includes/project/full-side');?> </div><!--End Sidebar--> <?php } else { ?> <div class="projectEntry singlePost grid_8 mainBox"> <?php get_template_part('/includes/project/project-slider');?> </div><!--End Project Entry --> <div id="sidebar" class="grid_4"> <?php get_template_part('/includes/project/project-side');?> </div><!--End Sidebar--> <?php } ?> <?php } else { ?> <div class="projectEntry singlePost grid_8 mainBox"> <?php get_template_part('/includes/project/project-slider');?> </div><!--End Project Entry --> <div id="sidebar" class="grid_4"> <?php get_template_part('/includes/project/project-side');?> </div><!--End Sidebar--> <?php } ?> </div><!--End Main Project--> <?php endwhile; ?> <?php else: ?> <?php endif; ?> <?php get_template_part('includes/content-portfolio-related'); ?> </div><!--END primary .hfeed--> </section><!--End Boxed--> <?php get_footer();?>Link to the website: http://www.rentacarpune.com/?post_type=portfolio&p=1272
No, all plugins are disabled. This is really troublesome. π
Thank you, although now whenever i update a page in the backend , it will not update on the main site(public access). Any reason why?