Stevie Caldarola
Forum Replies Created
-
Forum: Plugins
In reply to: [Simnor Shortcodes] Insert HTML & shortcodes in accordionWas there any movement on this question? If not, bump.
I love this plugin, but need HTML support in the accordion. Thanks!
Sort of- I had a plug-in that was causing the issue. Go through your installed plug-ins, and deactivate them one-by-one. For whichever one causes that problem code to disappear, get rid of that plugin.
Good luck!
Forum: Themes and Templates
In reply to: Adding Navigation to Project Single.phpCould it be something from the Portfolio gallery base page?
<div class="post"> <?php $loop = new WP_Query(array('post_type' => 'project', 'posts_per_page' => -1)); $count =0; ?> <div id="portfolio-wrapper"> <ul id="portfolio-list"> <?php if ( $loop ) : while ( $loop->have_posts() ) : $loop->the_post(); ?> <?php $terms = get_the_terms( $post->ID, 'tagportfolio' ); if ( $terms && ! is_wp_error( $terms ) ) : $links = array(); foreach ( $terms as $term ) { $links[] = $term->name; } $links = str_replace(' ', '-', $links); $tax = join( " ", $links ); else : $tax = ''; endif; ?> <?php $infos = get_post_custom_values('_url'); ?> <li class="portfolio-item <?php echo strtolower($tax); ?> all"> <div class="thumb"><a href="<?php the_permalink() ?>"><?php the_post_thumbnail( array(400, 160) ); ?></a></div> <h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3> </li> <?php endwhile; else: ?>
Forum: Themes and Templates
In reply to: Adding Navigation to Project Single.phpHeader code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd"> <html lang='en'> <head> <title><?php bloginfo('name'); ?> <?php wp_title(); ?></title> <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/reset.css" type="text/css"> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css"> <!--[if IE]> <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie.css" type="text/css" /> <![endif]--> <body class="home blog"> <div id="nav-bar-tile"> <div id="nav-bar-content"> <a href="https://www.brewspook.com"> <img src="https://brewspook.com/wp-content/uploads/2012/02/logo.png"> </a> <div id="nav-bar-links" class="nav-bar-links"><a href="https://www.brewspook.com/approach/" title="Approach">Approach</a> | <a href="https://www.brewspook.com/portfolio" title="Portfolio">Portfolio</a> | <a href="https://www.brewspook.com/contact" title="Contact">Contact</a> </div> </div><!-- nav-bar-content --> </div><!-- nav-bar-tile --> </head> <div id="wrapper"> <div id="content">
Forum: Themes and Templates
In reply to: Adding Navigation to Project Single.phpThanks- I took them out, but the links still aren’t showing.
Forum: Fixing WordPress
In reply to: Restoring with database backupThanks again for your help!
Forum: Fixing WordPress
In reply to: Restoring with database backupThank you- for some reason, the .htaccess file did not copy over. It appears to be working now!
Forum: Fixing WordPress
In reply to: Restoring with database backupIt was the entire .sql database file. When I go to edit the posts, they’re there and the permalinks look fine in the editor. What is the .htaccess file?
My friend was previously hosting my site so he is the one that put together the .sql file for me, but it was definitely the complete database.
Forum: Fixing WordPress
In reply to: Having trouble with restore from database backupNevermind- I got it. The file size was too large, I just followed directions from https://www.tamba2.org.uk/wordpress/restore/
Forum: Fixing WordPress
In reply to: Having trouble with restore from database backupI don’t have a user ladiesoc. ladiesoc is my username for the CPanel, username for the database is ladiesoc_ladies, which has “ALL” privileges.
My database is ladiesoc_wordpress.
Any thing else it could be?
Thanks!