dlature1
Forum Replies Created
-
Forum: Plugins
In reply to: [Z-URL Preview] First link worked, second did notok, sorry….never mind…….needed to set button location to Media Button Row…the Twitter auto format plugin threw me off, led me to believe this happened to all links
- This reply was modified 6 years, 10 months ago by dlature1.
Forum: Plugins
In reply to: [Z-URL Preview] First link worked, second did notyup, looks like that’s the case…just tried deactivating the plugin and the tweet still displays as twitter formatted graphic
Forum: Plugins
In reply to: [Z-URL Preview] First link worked, second did notmaybe the plugin just isn’t working at all, and Twitter links generate a graphic tweet via some other plugin or by default?
Forum: Plugins
In reply to: [WordPress Social Login] Login works , but when I submit comment, errorError log shows this:
Call to undefined function get_header() in myWPserverpath\wp-content\themes\catch-flames\404.php on line 10Forum: Plugins
In reply to: [WordPress Social Login] Login works , but when I submit comment, errorsame thing happens when I first login using one of the providers. The login works, but the return to the redirect link causes the 500 error as well …but, the login works, for if I go back to the page on which I am attempting to comment, the login with the provider is complete. Please direct me. I will continue to search these messages, but I have not found this particular issue yet.
(this is the URL of page I get with the 500 error message after being passed back to my blog with the provider token:
https://ecoecclesia.org/wp-login.php?action=wordpress_social_authenticated&provider=Facebook&mode=login- This reply was modified 7 years, 2 months ago by dlature1.
Forum: Plugins
In reply to: [WordPress Social Login] Facebook LoginFacebook now working too….took a while for it to filter through, I guess. Main problem was I had to put the new URL domain in the settings
Forum: Plugins
In reply to: [WordPress Social Login] Facebook LoginThe Google Login just worked. So now its on to a different Facebook error. New post for that. Stay tuned
Forum: Plugins
In reply to: [WordPress Social Login] Facebook LoginThe Google Login just worked. So now its on to a different Facebook error. New post for that.
Forum: Plugins
In reply to: [Amazon Product in a Post Plugin] Different alignment of elementsI’d like to know the answer(s) to this question as well. I’d also like to know how I can use the “Add New Amazon Product” page to create the “Book” post (“Book” being my custom post type to which I have selected as the kind of post for the Plugin to create) but NOT put any default content. I’d like to customize my single-book.php template with APIP shortcodes to display only certain elements. And also to be able to have the ASIN number that is put into a custom field for that post to be pulled into all the shortcode elements for the ASIN parameter. Is this doable?
Forum: Plugins
In reply to: [Custom Post Type UI] Feature requestsThanks for the quick reply, Michael. I understand that certain post types are registered within the functions of that plugin, and when that plugin is disabled, so is the registration of its CPT’s. But isn’t there a conditional logic that could handle this, so that any settings that might be applied to such a CPT (assigned a CPT status something like “outside”) could be disabled along with the plugin’s deactivation?) (or any other issue like that) Just wondering.
Forum: Plugins
In reply to: [Custom Post Type UI] Feature requestsI would like to see a capability to list and administer pre-existing CPT’s. At the time of installation of CPT UI, I had a couple of plugins which had created their own Custom post Types (like MyBookTable, which had created a CPT called “mbtbook” . I have another plugin called CPT-onomies that enables use of CPT’s as taxonomies, which sees this mbtbook type. So why doesn’t CPT UI also see the types that have been created by other plugins? Is there a way to make it look to the actual registered plugins across the site?
Forum: Plugins
In reply to: [Event Organiser] How to Do a Complete Archive List and Link To itI also have another problem that just cropped up. I have a test copy of a site running on my laptop under WAMP. The live copy is up on GoDaddy. I have an events page template that is correctly serving up a full content display of the events that are not yet started, and a “past Events” section of 3 thumbnails for the three most recent completed events. My test site suddenly started refusing to show my “complete display of a non-yet, upcoming event. When I looked at the Event under its admin panel that Event Organiser created when it created an “Events” Post Type, it had a bold “Scheduled” under it. I went to the Quick Edit and switched it to “published”, but it keeps flipping back. I had set times for the future dates for this event. This is not happening on my “Live” copy on Go Daddy. What is going on here? (Ok, update: apparently the Date/Time set in the Quick Edit, which is the Date Time from the wp_posts table and not the wp_eo_events, has to be set to a date equal to or before the present date. That is a little confusing for an event calendar to work this way. Or is there an attribute I can set in my template that doesn’t care about the “Scheduled” status? Here is the code I am using to generate the display of “upcoming” :
<?php
/**
* Display a list of upcoming events with Event Organiser
*
* Snippet that produces a simple list of the next 5 upcoming events.
*///Get upcoming ‘
$events = eo_get_events(array(
‘numberposts’=>5,
‘event_start_after’=>’today’,
‘showpastevents’=>true,//Will be deprecated, but set it to true to play it safe.
));if( $events ){
global $post;
echo ‘- ‘;
foreach( $events as $post ){
setup_postdata($post);
?>
<li style=”list-style-type: none;”>
‘> <h2><?php the_title(); ?></h2>
<?php eo_get_the_start(‘jS M YY’); ?>
<p><?php /*the_excerpt();*/ ?><?php the_content(); ?></p><?php
}
echo ‘
‘;
wp_reset_postdata();
}else{
echo ‘No Upcoming Events’;
}
?>Forum: Plugins
In reply to: [WordPress Social Login] Add a new domain for Googlebump?
an addendum to my previous question just posted. My old theme, Prosumer, did not have this problem. What template file can I compare to find the additional code I need for Catch Flames so that it displays the “Posted on..” line like the Prosumer theme does?
Forum: Plugins
In reply to: [Custom Post Type UI] CPTs not showing Post Datejust a bit ago I found this, which seems to be working. I hope there are no unforseen problems here in this approach:
// Add custom post types to archives - renamed some_function to CPT_ArchiveInclude Develocom's code from https://css-tricks.com/snippets/wordpress/make-archives-php-include-custom-post-types/ //11-22-15 keeping my fingers crossed! function CPT_ArchiveInclude( $query ) { if(!is_admin()) { // For categories, lets add 'nav_menu_item' to the array so we don't break our navigation.// if( is_category() || is_tag() && empty( $query->query_vars['suppress_filters'] ) ) { $query->set( 'post_type', array( 'post', 'nav_menu_item', 'ecoecclesia', 'occupytheology' )); return $query; } if( is_archive() && !is_post_type_archive() && empty( $query->query_vars['suppress_filters'] ) ) { $query->set( 'post_type', array( 'post', 'ecoecclesia', 'occupytheology', 'aktt_tweet' )); return $query; } if( is_home() && empty( $query->query_vars['suppress_filters'] ) ) { $query->set( 'post_type', array( 'post', 'ecoecclesia', 'occupytheology' )); return $query; } } } add_filter( 'pre_get_posts', 'CPT_ArchiveInclude' );