Jacob McKinney
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Sentry] Getting Errors from dependencyHey Alex,
So sorry for the hiatus. I don’t know what the issue was, but I think it was on my end. Like I said I was never able to reproduce locally and later on the issue seemed to resolve itself. Very strange. I’ll post back here if it comes up again.
Thanks for the prompt responses. Sorry I didn’t reciprocate.
- This reply was modified 5 years, 1 month ago by Jacob McKinney.
I have experienced this issue as well.
@wfgerald I had a similar issue because I was using reCAPTCHA V2. There isn’t anything in the WF setting description that suggests you have to use V3, maybe that should be added for clarity.
Forum: Plugins
In reply to: [AMP] PHP 7.2 Deprecation Error@swissspidy thanks for that insight.
Forum: Plugins
In reply to: [AMP] PHP 7.2 Deprecation Error@westonruter the issue seems to be with the PHP installation on our server. We are working on a fix.
Thanks for the quick response!
Forum: Plugins
In reply to: [AMP] PHP 7.2 Deprecation ErrorWe are on version 1.1.1
I see that line in our current plugin, so it seems odd that we are getting the error.
We are on PHP 7.2.17 but it seems to be acting like
INTL_IDNA_VARIANT_UTS46
isn’t defined. I’ll do some digging on our end.Forum: Fixing WordPress
In reply to: Cannot upload imageDid you upload the image via the WordPress media uploader? Or did you add the image via FTP?
Forum: Fixing WordPress
In reply to: How to create custom layouts and static pages in themes for clientsThat’s a huge topic that entire books have been written on. I understand how overwhelming it can be getting started with WordPress. There’s a ton of information out there.
Here is the best place to start:
The WordPress CodexThere is a ton of information there. Specifically you probably want to look into Theme Development.
You can look into specific WordPress functions such as
the_title()
,the_content()
, post meta viaget_option()
, for dynamically outputting user generated content. All of these (and a lot more) are documented on the Codex and can be found by simply running a search for the function.Another good resource for theme building is WP Hierarchy. It will help you when choosing what template files to build.
I know this is a lot of general information, but it was a pretty broad question. I sincerely hope this helps you get started.
Forum: Fixing WordPress
In reply to: Padding or boxsizing?From a quick glance, it looks as though your container class is using media queries for responsive design and has a width set at certain viewport sizes, it also has a 15px padding on either side.
You should be able to just set the width to 100%, remove the padding, and remove the width properties from the media queries and it will set the images to full width at every viewport size.
Hope this helps.
Forum: Fixing WordPress
In reply to: Remove tite of pages from websiteYou will have to edit the theme files. You will need FTP access to your host to edit the file. Alternatively, you can go to Appearance->Editor in your WordPress dashboard, but this is not recommended.
In either case, you will need to edit your theme’s file for displaying pages, likely
page.php
. All you have to do is find the where the code forthe_title();
and remove it. This will remove the title from all of your pages.Forum: Fixing WordPress
In reply to: Post before ContentThe problem is likely because you aren’t calling
wp_reset_query()
after the lastendif
.However, you really shouldn’t be using
query_posts()
. Instead you should be using theWP_Query
object to create a custom loop.The code would look pretty much the same:
<?php $query = new WP_Query( $args ); ?> <?php if( $query->have_posts() ) : ?> <h1>News Titles</h1> <?php while( $query->have_posts() ) : $query->the_post(); ?> <h2 style="margin-bottom:10px;"><a href="<?php esc_url( the_permalink() ); ?>" title="Permalink to <?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <p align="center"><?php the_post_thumbnail(array(480,480)); ?> </p> <?php the_excerpt(); ?> <div style="float:none;clear:both"></div> <?php endwhile; ?> <?php else: ?> <h2>No posts to display</h2> <?php endif; ?> <?php wp_reset_post_data(); ?>
Make sure to include
wp_reset_post_data()
or you will have the same issue.Forum: Fixing WordPress
In reply to: Error after updating to 4.3Finally figured it out! It was a DNS issue most likely due to vagrant being sandboxed, although, I don’t know why it wasn’t an issue until 4.3.
All I had to do was add
66.155.40.202 api.www.remarpro.com
to my host file within vagrant.I found the answer here: https://ryansechrest.com/2014/08/wordpress-establish-secure-connection-wordpress-org/
Thanks for the help everyone.
Forum: Plugins
In reply to: [The Events Calendar] Event Search don't work with WP 4.3Having the same issue here. Can’t event view next month. I had to disable the search bar and disable all views except the list view so visitors don’t get stuck.
Forum: Fixing WordPress
In reply to: Error after updating to 4.3This is all on a virtual development server on my pc. It’s definitely not a theme or plugin issue, as it is happening on all my installs, even the clean ones that I just created.
I’m trying to find php error logs on my virtual server but I haven’t had any luck yet.
Forum: Plugins
In reply to: [EWWW Image Optimizer] optipng and gifsicle not workingI am using iPage to host this site. I believe they are a linux host so this may be moot.
Here is the debug info: