cogdog
Forum Replies Created
-
Forum: Plugins
In reply to: [Flamingo] Lost Channel NamesYes, there was more to it than that because the transfer of sites was done by an IT staff. I developed on a sandbox site, provided an export. I believe they imported it to an internal dev server and then used this plugin to migrate. So some custom taxonomies got lost?
I care less about the cause. The production site has yet to be used, so I guess my recourse is to make new versions of my forms, and replace the ones that got imported.
Thanks for your time.
Forum: Plugins
In reply to: [Flamingo] Lost Channel NamesThis site is managed by a university IT department. It was used to transfer the site from a development server to a production one. Looks like it was from
Forum: Plugins
In reply to: [Flamingo] Lost Channel NamesTheme: Total https://total.wpexplorer.com/
Plugins
Advanced Custom Fields
Version 5.8.3Akismet Anti-Spam
Version 4.1.2Blocks
Version 1.6.18Classic Editor
Version 1.5Contact Form 7
Version 5.1.4Flamingo
Version 2.0iThemes Security
Version 7.4.1MainWP Child
Version 3.5.7Simple Blog Stats
Version 20190429Slider Revolution
Version 5.4.8.3Templatera
Version 2.0.1The Events Calendar
Version 4.9.7Total Theme Core
Version 1.0.3WP Migrate DB Pro
Version 1.9.8WP REST API Controller
Version 2.0.2WPBakery Page Builder
Version 6.0.3Forum: Plugins
In reply to: [Flamingo] Lost Channel NamesForum: Plugins
In reply to: [Podcast Feed Player Widget and Shortcode] Warning: Invalid ArgumentDitto. From my 15 minute peeking, there is something awry with the
dkpp_podcastfeed()function.$feedurl = $atts['feedurl'];Line 235 reads the attributes, which can be comma separated for multiple feeds.
There is an SSL test where the error occurs at line 244:
if( strpos($feedurl, ',') !== false ) { $feedurls = explode(',', $feedurl); } else { $feedurls = $feedurl; }Which means
$feedurlsends up as an array for more than one URL, and a string otherwise, hence the error will occur with the code starting at line 250, because for one URL its trying to runforeachon a string. ERROR.if (is_ssl()) { foreach ($feedurls as $url) { if(!preg_match( '|^https ?://|', $url )) { $ssltest = $ssltest + 1; $nonssl .= $url. ", "; } }I just tested commenting out lines 244-248 and replacing with what is done in other functions
$feedurls = explode(',', $feedurl);and the error went away.
That’s just some guesswork looking at the code; feed_fetch works fine on an array.
- This reply was modified 7 years, 6 months ago by cogdog.
Thanks, that worked like a charm. Not sure how I missed the advanced settings.
Forum: Themes and Templates
In reply to: [Modern] Featured Image Full WidthYes, I fully know and use Regenerate Thumbnails often. As far as I know, it will not upsize older featured images where the original size was smaller than a defined media size.
Forum: Themes and Templates
In reply to: [Modern] Featured Image Full WidthThanks for the response. Yes, I had changed both the columns number and the image sizes. This was a case where the theme was changed on an older blog with many posts, and not all the featured images were large enough.
True, specific use case is mine, and it’s looking great.
Forum: Plugins
In reply to: [Font Awesome 4 Menus] font awesome VERSION 5 UPDATEFWIW I made a run at a rewrite of the plugin to be compatible with Font Awesome 5 icons
https://github.com/cogdog/font-awesome-5-menusThe menu classes are working good. I don’t use the shortcodes, so have not tested them, but if that’s what I needed I’d opt for the official Font Awesome Plugin.
Forum: Plugins
In reply to: [Font Awesome 4 Menus] font awesome VERSION 5 UPDATEI tried a slightly different approach than Simon- his code will insert
fasclasses on all menu items, restricting it to just those icons.Instead, I commented out lines 164-166:
/* if( !in_array( 'fa', $classes ) ){ array_unshift( $classes, 'fa' ); } */and now I used explicitly the full classes from font awesome, e.g.
fab fa-flickr fas fa-arrows-alt far fa-clockand it seems to work (well some CSS adjustments needed as the icons were small and italic).
Forum: Fixing WordPress
In reply to: Missing CSS in Front End Forms Using wp_editorThanks, enqueuing the admin styles for the one page using the form fixed most of it; some other style conflicts called for moving the top the search results box down a bit in custom CSS.
Not elegant, but at least better.
Forum: Plugins
In reply to: [WP Custom Fields Search] Wrong Blog URL on MultisiteYup that works well! Thanks for quick fix.
Forum: Themes and Templates
In reply to: [Intergalactic] Cannot find Intergalactic 2 ThemeThanks, somehow I missed that themes roll off after two years. I guess the only way to find old themes is via Google search.
I use Intergalactic parent for a child theme I designed that turns WordPress into a sort of web-based slide presenter
https://github.com/cogdog/splotpoint
I’ve found it holds up well. I’m not too sure all the new features matter as it’s not used for blogging. Since 1.3.2 is not being updated, I might just roll into a single theme.
Thanks.
Forum: Themes and Templates
In reply to: [Intergalactic] Cannot find Intergalactic 2 ThemeStill, the question remains, why are neither Intergalactic or Intergalactic-2 not showing up in the Theme search on self-hosted WordPress? How many people can really know where to find these?