chrisboggs
Forum Replies Created
-
Forum: Plugins
In reply to: [Insert Pages] Failed to initialize plugin: wpInsertPages@twd How did you manage to resolve this issue? I am using the Chromium Auto Parts theme and seeing the same thing over and over: “Failed to initialize plugin: wpInsertPages”. Any help, from anyone would be greatly appreciated.
- This reply was modified 4 years, 11 months ago by chrisboggs.
Forum: Plugins
In reply to: [BackUpWordPress] Various errors after latest updateMe too. When I installed it, basically, relative to my paths, same as above:
“Fatal error: Class ‘HM\BackUpWordPress\Setup’ not found in /home/ourcore/public_html/wp-content/plugins/backupwordpress/functions/core.php on line 287”
It hosed the site so I deleted the plugin folder and site was immediately restored. I’ll just wait until it’s fixed to reinstall. Thanks guys!
Your solution worked like a charm. I’m embarrassed I couldn’t find that myself. Thank you for your help, I really appreciate it.
Forum: Plugins
In reply to: [Email Before Download] Inline Download Link Not ShowingI’m having the same difficulty. Can you provide an example of this “long-handed shortcode” please?
Forum: Plugins
In reply to: [Custom Post Type UI] Loop that displays only my Custom Post TypesAwesome feedback Michael! You have gone above and beyond in helping me. I will give this approach a go in the morning. If I have more to add ( and I hope so) I will do so here.
Thanks again,
-c-
Forum: Plugins
In reply to: [Custom Post Type UI] Loop that displays only my Custom Post TypesHi Michael, thanks for responding, I appreciate it.
Long story short: I created 4 CPTs with CPT UI that I wanted to be able to display members of on my blog index-type page. I wanted to represent each TYPE (ie. Case Studies, Whitepapers, Videos and Webinars) on the blog page by assigning a unique background-image and add the post title or each dynamically over it and displaying them in a grid.
I now have a grid of various CPTs displaying on a blog index page using the following code:
<?php $cats = array( 'cpt1' => 'case-studies', 'cpt2' => 'whitepapers', 'cpt3' => 'webinars', 'cpt4' => 'videos', ) ?> <?php $args = array( 'posts_per_page' => 20, 'offset' => 0, 'category' => '', 'category_name' => '', 'orderby' => 'post_date', 'order' => 'DESC', 'include' => '', 'exclude' => '', 'meta_key' => '', 'meta_value' => '', 'post_type' => $cats, 'post_mime_type' => '', 'post_parent' => '', 'post_status' => 'publish', 'suppress_filters' => true ); ?> <?php $my_query = new WP_Query($args); while ($my_query->have_posts()) : $my_query->the_post() ; ?> <?php echo '<div class="resourceblox">'; echo '<div class="'; // echo $post_type = get_post_type( $post->ID ); echo $post_type = get_post_type( $post->ID ); echo ' '; //start echo out category slug foreach((get_the_category()) as $category) { echo $category->slug; echo ' '; } // end echo out category slug echo '">'; echo '<a href="' . get_the_permalink() . '">'; echo '<h1>' . get_the_title() . '</h1>'; echo '</a>'; echo '</div>'; echo '</div>'; ?> <?php endwhile; wp_reset_query(); ?>
Now for the last part of my problem, (remember I’m a PHP noob) How do I create a set of text nav links at the top of the page (ie. Case Studies, Whitepapers, Videos and Webinars) that when clicked, queries this loop to return only the CPTs of the specific category chosen. I want to filter them.
Thanks for any help!
-c-
I need a solution to this also. I need to exclude sticky posts from the blog but not the Homepage.
Thanks in advance for any help!
Update: This problem appears to have been related to problems with the Mojo Scripts install at Bluehost. Tech support there did some things that they did not share with me and fixed the problem. We removed all traces of WordPress install and I started over from local files and am not having the problem any longer.
Forum: Plugins
In reply to: [Shortcodes by Angie Makes] No open/close arrows visible in accordionWell, I found my own answer and want to share in hopes of helping someone!
I don’t know why, but the following css was not included in the plugin css (this is my lack of understanding, not any fault of the plugin author) and is what is required to add open/close arrows to the accordion. My arrow PNGs are 14px square:
.ui-icon-triangle-1-e { margin:15px 0 0 0; width:14px; height:14px; background-image: url("images/collapsed.png"); } .ui-icon-triangle-1-s { margin:15px 0 0 0; width:14px; height:14px; background-image: url("images/expanded.png"); }
Forum: Fixing WordPress
In reply to: Twenty Thirteen custom header select image not workingOnly replying here because I think I have something to contribute as per the rules of the community.
I had identical problem and solved it by renaming the image and uploading again that I was trying to get to load into Twenty Thirteen. If I give even the same image a different version name each time, the header image updates as it should. Hope this helps someone.
Forum: Fixing WordPress
In reply to: .menu-toggle won't toggle problem w/ childtheme of twentytwelveOkay, sometimes this happens. I’ have found the problem just a couple of minutes after posting this help request.
In my childtheme’s css, I’ve changed the display value for:
.main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul { display: inline-block; }
to
.main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul { display: none; }
and this has solved my problem. My menu now toggles responsively.
-c-Forum: Fixing WordPress
In reply to: need help with including ie.css in twentytwelve childthemeI have found a working solution and am posting a link here to help out if I can.
Thanks! -c-
Thanks giacomo skriptico! Worked just fine on 1.9.5. Much appreciated.
Bump! I am having this problem too. I am operating on the assumption that I can set the mobile menu order by assigning values to “Order” Page Attribute for each page right? Thanks!
Forum: Themes and Templates
In reply to: [Twenty Eleven] On Adding Second Menu to Twenty ElevenHeartfelt thanks here too! It was nice to just find a simple core answer and not all the “this is how ftp works” kinda stuff that a full tutorial kinda needs to supply.