Forum Replies Created

Viewing 15 replies - 91 through 105 (of 132 total)
  • Thread Starter Blake

    (@alexanderblake)

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

    Thread Starter Blake

    (@alexanderblake)

    Using 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” ?

    Thread Starter Blake

    (@alexanderblake)

    Has 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!

    Thread Starter Blake

    (@alexanderblake)

    You, my friend, are brilliant! Thank you for finding and fixing my issue! Easy fix!

    I hope you have the most ridiculously awesome day.

    Thread Starter Blake

    (@alexanderblake)

    It appears to be only when I use Columns in my theme. Apparently, I hyperlinks are dead when placed inside a column box…

    Thread Starter Blake

    (@alexanderblake)

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

    Thread Starter Blake

    (@alexanderblake)

    I 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?

    Thread Starter Blake

    (@alexanderblake)

    <?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!

    Blake

    (@alexanderblake)

    My 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?

    Thread Starter Blake

    (@alexanderblake)

    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?

    Thread Starter Blake

    (@alexanderblake)

    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!

    Thread Starter Blake

    (@alexanderblake)

    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!

    Thread Starter Blake

    (@alexanderblake)

    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.

    Thread Starter Blake

    (@alexanderblake)

    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.

    Thread Starter Blake

    (@alexanderblake)

    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.

Viewing 15 replies - 91 through 105 (of 132 total)