neilfoster
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: The requested URL /index.php was not found on this server.I set the htaccess file to:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /2015/index.php [L]
</IfModule>
# END WordPressA page link works one time. Then when I check htaccess, it’s set back to:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressI’ve tried changing the permalinks a couple different ways and it only consistently works when it’s set to default.
Forum: Fixing WordPress
In reply to: The requested URL /index.php was not found on this server.well…. It’s not working again…
Any ideas?
Forum: Fixing WordPress
In reply to: The requested URL /index.php was not found on this server.HAHA!.. I KNEW this would happen. I went back and retried editing the .htaccess file again and adding the “/2015” into the correct place, and this time it worked…..
RewriteRule . /2015/index.php [L]
Doesn’t answer why it happened in the first place though…
Forum: Plugins
In reply to: [Kebo Twitter Feed] Display Images (or Videos?) in FeedsI’m using your plugin to show my tweets on a page much like blog entries by using shortcode.
Having an option to display the pic automatically without having to toggle it on/off would be great!
Forum: Plugins
In reply to: [The Events Calendar] Custom taxonomies in Subscribed Categories listThanks!
Forum: Plugins
In reply to: [The Events Calendar] Custom taxonomies in Subscribed Categories listSorry, I did figure this out. I was not using your correct function call in their plugin.
I posted this here AND there just in case anyone had any ideas here. Thanks again for responding. I’ll mark resolved.
It was as such in case anyone else here ever needs to know.:
/***************show event categories on subscribe2 page*****************************/
function my_taxonomy_types($taxonomies) { // where 'my_taxonomy_type' is the name of your custom taxonomy $taxonomies[] = 'tribe_events_cat'; return $taxonomies; } add_filter('s2_taxonomies', 'my_taxonomy_types'); function my_post_types($types) { $types[] = 'tribe_events'; return $types; } add_filter('s2_post_types', 'my_post_types');
Forum: Plugins
In reply to: [The Events Calendar] Change menu wording and labels on adminThanks.
There are some plugins that allow for admin menu and admin page text changes, but none of them affect this plugin…
No coding that worked elsewhere that I have found on any forums anywhere affect this plugin.
obviously this plugin uses something different than “standard” WordPress functions and coding. That’s where the confusion lies…
However, I KNOW this is not IMPOSSIBLE!
Thanks again!
ah. got it. Sort of a pain, but I can see why it works that way.
I appreciate all your help with this!
Now to get the people over at the event calendar to help with getting the labels changed!
Thanks again!
Forum: Plugins
In reply to: [The Events Calendar] Change menu wording and labels on adminAlthough gathered from the archives here. This does not work.
/** * Customize your tribe event calendar meta displays with a variety of methods. * Place this in your functions.php file within your theme */ add_action( 'wp_head', 'custom_event_meta' ); function custom_event_meta(){ // customize just the label tribe_set_meta_label( 'tribe_event_group_custom_meta', 'New Custom Meta Label', 'meta_group' ); // reregister meta (this will merge settings into the original registered settings) tribe_register_meta( 'tribe_event_website', array('classes' => array('meta_before'=> array('url')),'label' => __( 'More Info:' ),'register_overwrite' => true, 'filter_callback' => array('Tribe_Register_Meta', 'event_website') ) ); }
[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.]
Forum: Plugins
In reply to: [The Events Calendar] Change menu wording and labels on adminSeems like every time I post for help, I figure out something else…
So, here we go again….
I figured out the admin menu issue. I used this
$submenu[‘edit.php?post_type=tribe_events’][5][0]
$submenu[‘edit.php?post_type=tribe_events’][10][0]
$submenu[‘edit.php?post_type=tribe_events’][15][0]
$submenu[‘edit.php?post_type=tribe_events’][16][0]Now to still figure out the page labels.
didn’t register my custom posts types… ??
Got it.
function my_post_types($types) {
$types[] = ‘tribe_events’;
return $types;
}
add_filter(‘s2_post_types’, ‘my_post_types’);But I see a flaw, or an overlook, or just another WordPress peculiarity. It only emails when the event is created (to those subscribed to the event category attached to that event.. as it should). BUT only when it is CREATED. If I go back and edit the event and attach another category, it doesn’t send an email to the subscribers of the newly attached event category … Which sucks and pretty much renders the whole idea of subscribing to the event categories useless.
Unless there is something elsewhere that I am missing.
hmmm.. I get the same results with AIO right now.
I can send a test email, but when the event category is selected, and an event post is made in that event category, I get nothing.
I’ll dig into that one more tonight or tomorrow. I hate to start all over with all the modifications I did in the event calendar, but I will if AIO works…
Tried deactivating all plugins and that did not help.
Oddly enough, when I do a test email from Subscribe2 to the recipients (choosing one of the “event categories”) it does send the email…
perplexed but not defeated…
Well, it looks like you’ve already solved this issue with 8.2, but I’m still not getting it. Next step is to deactivate all my other plugins once again and give it a try… tomorrow…
Well, after all of that, I got the event categories to show up, but now it is not emailing when that event category is selected.
It emails when a standard WP category is selected, but not the event category.
I guess I have some digging and experimentation to do…