stilfx
Forum Replies Created
-
Forum: Plugins
In reply to: [Broken Link Checker] Extra underscore in SELECT statementSo simple, how is this not patched yet?
Uncaught ReferenceError: WFAD is not defined
at admin.php?page=WordfenceWAF:616
at admin.php?page=WordfenceWAF:924Forum: Plugins
In reply to: [Store Locator Plus®] Form showing “add_on” in multiple placesAny idea where we can grab Store Locator Plus v4.7.1?
Forum: Plugins
In reply to: [Conditional Widgets] Function with Custom Post TypesLooking for this as well. While I prefer this plugin to others, I’ve actually had to use others for that exact missing functionality in certain client sites.
I’d also be game to help debug and feature scope this.
Thanks for the great plugin none-the-less.
- This reply was modified 9 years, 7 months ago by stilfx.
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Broken in 5.2.7?Really appreciate that!
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Broken in 5.2.7?I have the exact same issue! And I cannot figure out how to debug what’s gone wrong..
You can still disallow: /wp-content/plugins/ — that’s not the issue.
The actual issue, just as the error states, is that your site is disallowing crawler access to the theme’s JavaScript, CSS and image files.
If you investigate you’ll most likely find disallow: /wp-content/ or disallow: /wp-content/themes – possibly even in the sitemap.xml file – which is where I found it.
This blocks crawler access to the theme’s files – JavaScript, CSS and image files
If you create a domain.com/robots.txt file and explicitly allow access, you should be good to go.
User-Agent: *
Allow: /wp-content/themes/Forum: Fixing WordPress
In reply to: jQuery error on 3.6 upgrade jquery-1.10.2.min.map 404I cannot find any other posts or resolutions on it though??
Forum: Fixing WordPress
In reply to: jQuery error on 3.6 upgrade jquery-1.10.2.min.map 404I’m getting this as well..
GET https://s1.wp.com/_static/jquery-1.10.2.min.map 400 (Bad Request)
I think this is a Jetpack error?
Forum: Hacks
In reply to: WordPress menu outside WordPressThis seems to be the key..?
http://wpengineer.com/1038/embed-wordpress-functions-outside-wordpress/
I’m looking into the same thing. Seem’s a bit pointless to have a carousel of tiny images if you cannot “lightbox” them to see the bigger picture. Everything is there to make it work, except the anchor tag around the image.
Forum: Fixing WordPress
In reply to: New Domain, Old Domain LoginSure did. Even double checked the .htaccess file.
I have a feeling it’s save in the DB someplace.
Very sporadic. Anyone else find a resolution?
You nailed it, that does look to be the issue.. old school clients, w/ old school servers! Anyway, I just ran the 301 through the htaccess manually. Thanks for the effort none-the-less.
Forum: Themes and Templates
In reply to: Home page exerpt, with blog pageFigured it out.
1) Create a new page called home, save it.
2) Create a new page template, and name it home.
3) Update the home page to use the home template.
4) Settings > Reading > Select the home page as your front page.
5) Add this code to your home page template to pull the latest post<?php $recentPosts = new WP_Query(); $recentPosts->query('showposts=1'); ?> <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?> <h2><a href="<?php the_permalink();?>"><?php the_title();?></a></h2> <div id="exerpt"><?php the_excerpt(); ?></div> <p class="readMore"><a href="<?php the_permalink();?>">more »</a></p> <?php endwhile; ?>*Notice this code it set up to only show the excerpt of the latest post (the_excerpt(); and showposts=1).