Eric
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection] Invalid group when creating redirectI’m not sure what might be happening, but this plugin used to create two groups automatically. Those groups were ‘Redirections’ and ‘Modified Posts’. These two groups are NO longer being created automatically, which I think is causing some issue with how this plugin functions.
Forum: Plugins
In reply to: [Cloudflare] Plugin breaks Infusionsoft FormsI’m actually using the Gravity Forms Infusionsoft Add-On which binds Gravity Forms to Infusionsoft, so I’m not actually placing any Infusionsoft code myself.
Forum: Plugins
In reply to: [Infusionsoft Gravity Forms Add-on] Dynamically Assign Entry TagsBasically, is there a hook that I can utilize to dynamically add the Entry Tag ID to the form data prior to it being processed by Infusionsoft?
Forum: Plugins
In reply to: [Broken Link Checker] Broken Link Checker – not available for downloadI am having this problem as well. Does anyone know why this is occurring within some self-hosted environments?
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] I want open backup file .wpressIs there a reason that there isn’t a simple zip export format?
Forum: Fixing WordPress
In reply to: name query string parameter gives 404.I know this is an old post, but some query string variables seems to be reserved for WordPress functions. I can’t seem to find a list of what variable names are reserved, but I know that
m
ands
doesn’t work either.Does anyone know where a list of reserved query string variables can be found?
Forum: Hacks
In reply to: Custom Walker Menu $this ErrorI was able to solve this problem. When calling
wp_nav_menu
, the walker needs to be called using the following code:'walker' => new Custom_Walker_Class
I was not calling it this way (I was missing the
new
part) and I was receiving the error noted above. Hopefully this helps other unanswered posts.Forum: Fixing WordPress
In reply to: Custom Walker MenuI’m having the exact same issue and I can’t seem to find a solution. Anyone have any ideas what is causing this? I’m using the Bones theme (if that matters).
Forum: Themes and Templates
In reply to: Remove Customize from Admin MenuTry using the following:
function remove_menus(){ remove_submenu_page( 'themes.php', 'customize.php' ); } add_action( 'admin_menu', 'remove_menus' );
Let me know if that works.
Also, can you share how you removed the Header and Background links?
Forum: Plugins
In reply to: [WooCommerce] Custom input field on productsI personally feel the Product Add Ons extension really falls short. It is probably perfect for Personalized products, but the way that it handles field grouping and its lack of validation and logic really introduces a lot of limitations. If it had an interface more like Advanced Custom Fields, it would be hands down the best option. However, I still think it has a long way to go.
I got to the bottom of this. I had made an alteration to the Single.php template within the Event Calendar and saved the changed file within an “events” directory within my theme’s directory. The update must have changed something in regards to how the single template works, because the minor edit I made broke the content.
I’m trying to use the following code (from another page within my theme) but it no longer works. It did work with Event Calendar 2.0.4.
<?php global $theLayout; if (have_posts()) : while (have_posts()) : the_post(); $blogOptions = $theLayout['blog']; // style and layout info $postClass = array(); // images enabled? if ($theLayout['blog']['post_featured_images']) { // class $postClass[] = 'style-image-left'; // get thumbnail image $thumb = get_post_thumbnail_id(); // image sizes $imageW = $theLayout['blog']['image']['width']; $imageH = $theLayout['blog']['image']['height']; // get resized image // this will return the resized $thumb or placeholder if enabled and no $thumb $image = vt_resize( $thumb, '', $imageW, $imageH, true ); } if (!$image['url']) { // no imge $postClass[] = 'noImage'; } ?> //EVENT CONTENT <?php endwhile; endif; ?>
It seems that
if (have_posts()) : while (have_posts()) : the_post();
no longer works. Can anyone tell me how to fix this code so that it works correctly within the event calendar? I’m using the Mingle Theme available at ThemeForestI’m having a similar problem once I updated from 2.0.4 to 2.0.6. All of my events are now missing their content.
https://www.lyp.org/event/public-relations-committee-meeting-9/
What changed from 2.0.4 to 2.0.6 that would have caused my events to no longer display content?
Forum: Plugins
In reply to: [Twitter Widget Pro] [Plugin: Twitter Widget Pro] No Tweets AvailableI’m having this same problem. I’m hosted within the Rackspace cloud and am using WordPress theme “Mingle” https://themeforest.net/item/mingle-multipurpose-wordpress-theme/235056
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Private EventsDid you ever hear anything back regarding this feature? I would like to do the same thing.
Also, for anyone looking to do this, you can find this function in the “template-tags.php” file starting around line 536. You need to inject the first IF statement and add the line “AND $wpdb->posts.post_status in $selectivity” within the SQL statement.