Kerri
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Locked out of sitethanks. I will try it now.
Forum: Fixing WordPress
In reply to: Locked out of siteI also have Dreamweaver and can enter coding if given to me to update wordpress from 4.2.32 to the latest version if that is the best rout
Forum: Fixing WordPress
In reply to: Locked out of siteHi Steve, I don’t have a password problem at all. When I go to cabinsinyosemite.net/wp-admin It goes to a 404 error page not found. I contacted Powweb and they said I do not have access because the site wasn’t updated to 5.9.3 version of wordpress. The version I have is still 4.?.?
Powweb will not help me access cabinsinyosemite.net/wp-admin to update the version of wordpress. It seems like the only option is to go through powweb’s hosting site however do not know how to update the site this way. Please advise.
Forum: Fixing WordPress
In reply to: Locked out of sitewhen i try to link though the powweb hosting site I get this error:
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log.
Forum: Fixing WordPress
In reply to: Locked out of siteyes I did. sorry it took me a few days to get back to this. Powweb closed the ticket and will not help. I have access through the hosting site to the backend however not through wordpress. cabinsinyosemite.net/wp-admin
I need to update wordpress to regain access to the site.Forum: Fixing WordPress
In reply to: Locked out of siteI may have the same type of problem with allmondbrothersclan.com. I can login and can see the menus however when I select the dashboard it opens a page with the following message:
[`Shortcode Embeds
Shortcodes allow you to easily and safely embed media from other places in your site. With just one simple code, you can tell WordPress to embed YouTube, Flickr, and other media.Enter a shortcode directly into the Post/Page editor to embed media. For specific instructions follow the links below.
There has been a critical error on this website. Please check your site admin email inbox for instructions.`
https://www.allmondbrothersclan.com/wp-admin/}Forum: Fixing WordPress
In reply to: Locked out of siteyes, I can access the control panel on the hosting site
Forum: Fixing WordPress
In reply to: Locked out of sitethanks, the place is amazing. It’s Yosemite without all the tourists. I highly recommend it.
The problem isn’t the password, I can’t even get to the option to sign in. When I enter https://www.cabinsinyosemite.net/wp-admin I get the error page 404: https://www.cabinsinyosemite.net/wp-login. I am completely locked out of the option to get to the dashboard
Forum: Fixing WordPress
In reply to: Locked out of siteI have access powweb hosting and that control panel but not to the dashboard to update wordpress. The site is up cabinsinyosemite.net but again can update
Forum: Fixing WordPress
In reply to: Locked out of siteHi
Is’t not expired it is an old version of wordpress, 4.something. I can’t access the dashboard since it hasn’t been updated. They said they could get access and update it however want me to pay more to do this. I simply need to get to the dashboard and I will update to the new version of wordpressForum: Plugins
In reply to: [Appointments] Add 2015 ti Angies list section of front pageI found where to add the date but now my slider has disappeared all together. The only thing I changed is the tag line “Shed Light on Your Home Inspection” and added “2015” to Angie”s list. What happened? sunshinehomeinspection.com/
<?php get_header(); ?>
<section class=”showcase”>
<h2 class=”tagline”>Shed Light on Your Home Inspection
<?php
$slider_query = new WP_Query(‘post_type=slideshow&orderby=menu_order&order=ASC&post_status=publish’);
$total = wp_count_posts(‘slideshow’);
$published = $total->publish;if($slider_query->have_posts()) { ?>
<section class=”slideshow”>
<div class=”carousel slide” data-ride=”carousel” id=”sunshineslide”>
<ol class=”carousel-indicators”>
<?php $indicator_list = ”;
$counter = 0;
for($counter = 0; $counter < $published; $counter++) {
if($counter== 0) {$active = ‘active ‘;}
else {$active = ”;}
$indicator_item = ‘<li data-target=”#sunshineslide” data-slide-to=”‘.$counter.'” class=”‘.$active.’indicator”>’;
$indicator_list .= $indicator_item;
}
echo $indicator_list;
?><div class=”carousel-inner”>
<?php while ($slider_query->have_posts()) : $slider_query->the_post();
$thumb_ID = get_post_thumbnail_id();
$attachmentimage=wp_get_attachment_image_src( $thumb_ID, ‘slide’ );
?>
<div class=”item<?php if($active_counter==0) echo’ active’;?>” style=”background-image: url(‘<?php echo $attachmentimage[0]; ?>’)”></div>
<?php $active_counter++; endwhile; wp_reset_postdata(); ?>
</div>
</div>
</section>
<?php } wp_reset_query();?>
<section class=”awards”>
<div class=”awards-wrapper”>
<div class=”award”>
<div class=”award-wrapper”>
<div class=”award-image”><img src=”<?php echo WP_THEME_URL; ?>/image/ashi.png” /></div>
<div class=”award-content”>
<h4 class=”award-title”>ASHI Certified</h4>
<p>“ASHI” Inspectors are the only ones certified by The National Commission for Certifying Agencies. This is the highest level of inspector in the country.</p>
</div>
</div>
</div>
<div class=”award”>
<div class=”award-wrapper”>
<div class=”award-image”><script type=”text/javascript” src=”https://www.angieslist.com/webbadge/insertwebbadge.js?bid=4bdec8867df604eacee3ebbd9acb3187″></script><script type=”text/javascript”>if (BADGEBOX) BADGEBOX.PlaceBadge();</script><noscript><div id=”ssanslnk”>NEW ORLEANS home inspection</div></noscript></div>
<div class=”award-content”>
<h4 class=”award-title”>2013, 2014 & 2015 Angie’s List Super Service Award</h4>
<p>We are the highest rated home inspection company in Southeast Louisiana on Angie’s List.</p>
</div>
</div>
</div>
</div>
</section>
</div>
<section class=”call-to-action”>
<h2 class=”tagline”>Shed Light on Your Home Inspection</h2>
/schedule”>Schedule My Home Inspection <i class=”fa fa-chevron-right”></i> </section>
</section>
<section class=”fp-testimonials”>
<div class=”testimonials-container”>
<h3 class=”section-heading”>Look what people have been saying</h3>
<div class=”testimonials-wrapper”>
<?php $testimonial_args = array(
‘post_type’ => ‘testimonial’,
‘orderby’ => ‘rand’,
‘posts_per_page’ => 5,
‘tax_query’ => array(
array(
‘taxonomy’ => ‘post_format’,
‘field’ => ‘slug’,
‘terms’ => ‘post-format-video’,
‘operator’ => ‘NOT IN’
) ) );$testimonial_query = new WP_Query($testimonial_args);
$published = $testimonial_query->post_count;if($testimonial_query->have_posts()) { ?>
<div class=”text-testimonials”>
<div class=”carousel slide” data-ride=”carousel” data-interval=”false” id=”text-testimonial”>
<ol class=”carousel-indicators”>
<?php $indicator_list = ”;
$counter = 0;
$names = array();
while ($testimonial_query->have_posts()) : $testimonial_query->the_post();
$names[] = get_the_title();
endwhile; wp_reset_query();
for($counter = 0; $counter < $published; $counter++) {
if($counter== 0) {$active = ‘active ‘;}
else {$active = ”;}
$indicator_item = ‘<li data-target=”#text-testimonial” data-slide-to=”‘.$counter.'” class=”‘.$active.’indicator”><span>’.$names[$counter].'</span>’;
$indicator_list .= $indicator_item;
}
echo $indicator_list;
?>
<i class=”fa fa-comment”></i>
? <div class=”carousel-inner”>
<?php
$counter = 0;
while ($testimonial_query->have_posts()) : $testimonial_query->the_post();
if($counter== 0) {$active = ‘active ‘;}
else {$active = ”;}?>
<div class=”quote item <?php echo $active;?>” cite=”https://plus.google.com/106245741513739710449/about?hl=en”>
<div class=”source”>
<h4 class=”review-source <?php the_field(‘review_from’); ?>”>Review from <span>
<?php $field = get_field_object(‘review_from’); $value = get_field(‘review_from’); $label = $field[‘choices’][ $value ]; echo $label; ?>
</span></h4>
</div>
<div class=”text-content hang hang<?php echo $counter; ?>”>
<?php the_content(); ?>
<p class=”author”>~<?php the_title(); ?></p>
</div>
</div>
<?php $counter++; endwhile; ?>
</div>
</div>
</div>
<?php } wp_reset_query();?>
<?php $video_args = array(
‘post_type’ => array( ‘post’, ‘testimonial’),
‘posts_per_page’ => 4,
‘orderby’ => ‘menu_order’,
‘tax_query’ => array(
array(
‘taxonomy’ => ‘post_format’,
‘field’ => ‘slug’,
‘terms’ => ‘post-format-video’
) ) );
$video_query = new WP_Query($video_args);
if($video_query->have_posts()) {
$published = $video_query->post_count; ?>
<div class=”video-testimonials”>
<div class=”carousel slide” data-interval=”false” data-ride=”carousel” id=”video_slide”>
<ol class=”carousel-indicators”>
<?php $indicator_list = ”;
$counter = 0;
for($counter = 0; $counter < $published; $counter++) {
if($counter== 0) {$active = ‘active ‘;}
else {$active = ”;}
$indicator_item = ‘<li data-target=”#video_slide” data-slide-to=”‘.$counter.'” class=”‘.$active.’indicator”>’;
$indicator_list .= $indicator_item;
}
echo $indicator_list; ?><div class=”carousel-inner”>
<?php $counter = 0;
while($video_query->have_posts()) : $video_query->the_post();
if($counter== 0) {$active = ‘active ‘;}
else {$active = ”;}//VIDEO INFO
$video_id = get_field(video_id);
$video_title = get_the_title();
$video_description = get_the_content();
$video_url = ‘https://www.youtube.com/watch?v=’.$video_id;
$video_sd = ‘https://img.youtube.com/vi/’.$video_id.’/sddefault.jpg’; // standard definition 640 x 480
$video_high = ‘https://img.youtube.com/vi/’.$video_id.’/hqdefault.jpg’; // high quality default 480 x 360
$video_med = ‘https://img.youtube.com/vi/’.$video_id.’/mqdefault.jpg’; // medium quality default 320 x 180 ?>
<div class=”video <?php echo $active;?>item”> ” rel=”wp-video-lightbox” href=”<?php echo $video_url;?>”> <img src=”<?php echo $video_high?>”> <i class=”fa fa-video-camera”></i>
<div class=”slide-caption”>
<h4 class=”video-title”><i class=”fa fa-video-camera”></i> <?php echo $video_title;?></h4>
</div>
</div>
<?php $counter++; endwhile; ?>
</div>
<!–End carousel inner –>
</div>
<!–End carousel –>
</div>
<!– END VIDEO TESTIMONIALS–>
<?php } ?>
</div>
<!–End testimonials wrapper–>
<div class=”more-wrapper”> /testimonial” class=”btn more”>View all Testimonials
</div>
</div>
</section>
<section class=”body”>
<div class=”body-container”>
<div class=”column-wrapper”>
<section class=”main”>
<section class=”about”>
<?php while ( have_posts() ) : the_post(); ?>
<article id=”post-<?php the_ID(); ?>” class=”clearfix page”>
<h3 class=”section-title”>Locally Owned and Operated</h3>
<div class=”entry”>
<?php the_content(); ?>
</div>
</article>
<?php endwhile;?>
</section>
<section class=”booking”>
<h3 class=”section-title”>Book my home inspection</h3>
<div class=”booking-calendar”>
<!– <?php echo W3TC_DYNAMIC_SECURITY; ?> mfunc –>
<?php echo do_shortcode(‘[app_schedule logged=”Click on a free time slot to book your appointment.” title=””][app_schedule add=”1″ logged=”” title=””][app_pagination step=”2″][app_login][app_paypal][app_confirmation address=”Address of property to be inspected:” confirm_text=”Please continue to confirm your appointment.” button_text=”Confirm this appointment”]’); ?>
<!–/mfunc <?php echo W3TC_DYNAMIC_SECURITY; ?> –>
</div>
</section>
</section>
<aside class=”sidebar home-sidebar”>
<section class=”blog”>
<?php $my_query = new WP_Query(‘post_type=post&posts_per_page=1’); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<h3 class=”section-title”>Our Blog</h3>
<div class=”post”>
<h4 class=”post-title”>“>
<?php the_title(); ?>
</h4>
<h5 class=”date”>Posted on
<?php the_time(‘M d, Y’) ?>
</h5>
<div class=”content”>
<?php if ( has_post_thumbnail() ) { ?>
“>
<?php the_post_thumbnail(‘thumb’); ?>
<?php } ?>
<p>
<?php the_excerpt(); ?>
</p>
</div>
” class=”btn more”>Read More </div>
<?php endwhile;?>
</section>
<div class=”button yellow-btn”> /schedule”><i class=”fa fa-calendar”></i>Schedule my home inspection</div>
<!–<?php
if( get_field(‘sample_report’, 196) ) {
$sampleReport = get_field( “sample_report”, 196 ); ?>
<div class=”button blue-btn”> ” target=”_blank”><img src=”<?php echo WP_THEME_URL; ?>/image/pdfIcon.png” />View a sample report </div>
<?php } ?>–>
</aside>
</div>
</div>
</section>
<?php get_footer(); ?>Forum: Plugins
In reply to: [Appointments] Add 2015 ti Angies list section of front pageForum: Plugins
In reply to: [Delightful Downloads] opens in browser windowI can be more specific after adding more files for downloads. I am able to download pdf however the jpeg with the same settings is still the problem. How do I make the jpeg not open in the browser and only download?
Forum: Plugins
In reply to: [Delightful Downloads] opens in browser windowThe directions page is missing on your site. It links to an error 404. I should be a little more clear. I uploaded the file directly to Delightful Downloads and changed the setting as directed and it still opens in the browser. Please advise. I am using Firefox browser.
Very.
Thanks again