vaprak
Forum Replies Created
-
Forum: Plugins
In reply to: [Ad Blocking Detector] Error when creating new shortcodesI too had the “ERROR: couldn’t find options page.” error appear when trying to create a shortcode.
The culprit for me is W3 Total Cache. Not sure what setting is the problem, but to create the shortcodes I had to disable W3. Once the shortcodes were created I re-enabled W3. Everything appears to be working so far.
Forum: Plugins
In reply to: [WP-Sweep] Deleting Orphaned/Duplicated Post MetaAgreed. I guess what I was asking is if more information could be displayed when the details button is used.
Try putting this in your theme functions.php
function remove_types_metabox() { remove_meta_box('wpcf-group-postmeta-fields-can-unfiltered-html', post, 'normal'); } add_action('add_meta_boxes', 'remove_types_metabox', 999);Julian – any chance you can share what you wrote?
Figured it out.
add:
remove_meta_box('jetpack_summary_widget', 'dashboard', 'normal');to your theme’s functions.php
Smush.it service is currently offline. When, and if, it gets restored, the plugin should work again.
I would love to see that functionality too, Julian.
Forum: Fixing WordPress
In reply to: Alternating image position in post exerptsHow do you use this code when in the template it looks like this:
<?php query_posts('paged='.$paged.'&cat='.$theme_home_cats); if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post"> <?php $args = array( 'post_type' => 'attachment', 'numberposts' => 1, 'post_status' => null, 'post_mime_type' => 'image', 'orderby' => menu_order, 'order' => ASC, 'post_parent' => $post->ID ); $attachments = get_posts($args); if ($attachments) { foreach ($attachments as $attachment) { ?> <div class="post-image"> <a href="<?php the_permalink(); ?>"><img src="<?php echo wp_get_attachment_thumb_url($attachment->ID) ?>" alt="" /></a> </div> <div class="right"> <? }} else { ?> <div class="right2"> <?php } ?>Anyone supporting this plugin?
None of the posted solutions work for me. Anyone have any other ideas to get around this?
Forum: Fixing WordPress
In reply to: Pass the_title() into variableThank you, sir.
Works perfectly.
Forum: Fixing WordPress
In reply to: Pass a post title to a .swf file within the loopHas anyone come up with a way to get post_title assigned to a variable?
Forum: Fixing WordPress
In reply to: Integrating With SiteYou need to set up a splash page. You need to create a page titled ‘home.php’ and place in your template directory.
More information can be found HERE. See the portion about using WordPress as a CMS.
-Mike
Forum: Plugins
In reply to: Custom Query String – is_archive problemThat’s the CQS plugin I’m using already.
Thanks.
-mike
Forum: Plugins
In reply to: Custom Query String – is_archive problemI think problem is solved.
I set “Blog Pages” in the “Reading Options” to “-1” (it was set to “1” as I only wanted the latest post to show on main page). Then I made an “is_home” query in CQS and set the value to “1”. Now everything appears to be working.
I’d be curious if there was another solution to the behavior though.
Thanks again.
-mike