Blake
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Blog Page is BlankHey Brandon,
The NEWS page is there, but it’s blank. It would normally show a list of available posts. I want to know if there’s something in the Jetpack files that I can edit to make sure it calls out NEWS as the “posts page”.
I rewrote the index file to reflect the static page I needed because without it, posts were showing up, and the client didn’t want that.
Thank you for your help and your patience.
Forum: Plugins
In reply to: [Plugin: JetPack] Blog Page is Blank – no posts appearUsing Jetpack’s Custom CSS panel, I want to callout the correct page for posts. I’m not sure how to do that. Should it be a tag like “post array” ?
Forum: Plugins
In reply to: [Plugin: JetPack] Blog Page is Blank – no posts appearHas anyone had this issue?
In order to get a static page using Jetpack, I had to rewrite the index file. Now I can’t get the posts to show up. I need to somehow call out the “news” page as the blog page.
Please help!
Forum: Fixing WordPress
In reply to: Internal Page Links DeadYou, my friend, are brilliant! Thank you for finding and fixing my issue! Easy fix!
I hope you have the most ridiculously awesome day.
Forum: Fixing WordPress
In reply to: Internal Page Links DeadIt appears to be only when I use Columns in my theme. Apparently, I hyperlinks are dead when placed inside a column box…
Forum: Fixing WordPress
In reply to: Internal Page Links DeadStrangely enough, it’s only this page and one other page on the site. Other links on other pages work just fine. I’m not sure what the deal is.
Forum: Plugins
In reply to: [Jetpack] Change Home Page on MobileI couldn’t find it in the files, so I simply rewrote the index file.
Now I’m trying to modify the menus so I can eliminate three pages from appearing in the mobile version. Progress, right?
Forum: Fixing WordPress
In reply to: Add Dynamic/Verification Question to contact.php page<?php $your_email=trim($_POST['your_email']); $your_web_site_name=trim($_POST['your_web_site_name']); ?> <?php //If the form is submitted if(isset($_POST['name'])) { //Check to make sure that the name field is not empty if(trim($_POST['name']) === '') { $hasError = true; } else { $name = trim($_POST['name']); } //Check to make sure sure that a valid email address is submitted if(trim($_POST['email']) === '') { $hasError = true; } else if (!preg_match('^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9-.]+$^', trim($_POST['email']))) { $hasError = true; $errorMessage = $_POST['text_4']; } else { $email = trim($_POST['email']); } //phone if(isset($_POST['phone'])) $phone = trim($_POST['phone']); //company name if(isset($_POST['company_name'])) $company_name = trim($_POST['company_name']); //company url if(isset($_POST['company_url'])) $company_url = trim($_POST['company_url']); //Check to make sure comments were entered if(trim($_POST['message']) === '') { $hasError = true; } else { if(function_exists('stripslashes')) { $comments = stripslashes(trim($_POST['message'])); } else { $comments = trim($_POST['message']); } } //If there is no error, send the email if(!isset($hasError)) { $emailTo = $your_email; $subject = 'Contact Form Submission from '.$name; //message body $body ="Name: $name \n\n"; $body .="Email: $email \n\n"; if(isset($phone)) $body .="Phone:$phone\n\n"; if(isset($company_name)) $body .="Company Name: $company_name\n\n"; if(isset($company_url)) $body .="Company Url: $company_url \n\n"; $body .="Message: $comments"; $headers = 'From: '.$your_web_site_name.' <'.$emailTo.'>' . "\r\n" . 'Reply-To: ' . $email; mail($emailTo, $subject, $body, $headers); $emailSent = true; } } ?> <?php if(isset($emailSent) == true) { ?> <div class="ok_box"> <h3><?php echo $_POST['text_1'];?>, <?php echo $name;?></h3> <p><?php echo $_POST['text_2'];?></p> </div> <?php } ?> <?php if(isset($hasError) ) { ?> <div class="error_box"> <?php echo $_POST['text_3'];?> <?php echo $errorMessage;?> </div> <?php } ?>
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Hopefully this helps!!
I have been searching around for a while now, and I’d love to have this resolved so I can move forward. Once I can have an easy human verification field, I can then plug it into the other 18 sites on their network.
Thanks!
Forum: Plugins
In reply to: [Videopack] Video not playing in FirefoxMy video doesn’t show up, let alone play, in any browser.
When I upload a screenshot for my featured image, THAT shows up, but still nothing for the video itself.
Here’s the code I used on the post:
[video width="426" height="240" src="https://empowereveryday.com/wp-content/uploads/2013/10/newsltetter-email2.mp4"][/video]Ideas?
Forum: Plugins
In reply to: [Widgets on Pages] How to specify where on the page?I guess this has to do with the size of the sidebar. It looks like its actually just a container with no justification or layout style. How do I change that?
Forum: Plugins
In reply to: [Awesome Weather Widget] Transparency Possible?Awesome!! It worked like a charm and look AWESOME. Now I can install it in my other sites with and without transparency. BOOM.
Thank you!
Forum: Plugins
In reply to: [Awesome Weather Widget] Transparency Possible?I added
background: rgba(255,255,255,0);In place of the .awesome-weather-wrap {
background: #333;It didn’t seem to make a difference. The widget it still pink. So I left it in the plugin’s .css file, and put #333 in the widget itself because it’s closest to the footer color.
https://rockwalldowntown.com – you can see the grid pattern I’m trying to achieve. Transparency would be easier because the image URL for it just ends up being basically solid #333 colored anyway.
What am I missing?
Thanks, by the way!
Forum: Plugins
In reply to: HOW did he do this with the map?If it’s in the stylesheet, I don’t know what I’m looking for. If it’s in the functions, I still can’t see anything being called out.
I can post whatever file content you like.
Forum: Fixing WordPress
In reply to: Sortcode throwing off footer!I found the shortcode in the functions.php folder. It was missing a closing tag, so I wrapped it up. All is right in the world again.
Forum: Fixing WordPress
In reply to: Sortcode throwing off footer!I threw a set of <div> tags around it to see if I could separate it from the rest of the page coding. It seems that everything before that code in the page is correct – margins, colors, everything. After that section of the page, however, the text has no padding, is up against the left side of the content box, and the footer is all the way to the left as well.
It almost feels like the app/plugin (which I’m still trying to find) is missing a closing tag so all the settings are screwing it up.
It’s a commercial theme called eStore. I’ll check out support there too.