jepser
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Not Visible Post text only show tag and titlePlease consider closing this thread Yahamaga
Forum: Fixing WordPress
In reply to: WordPress rest apiYes, you’re right you should create that extension ??
Forum: Themes and Templates
In reply to: [Maskitto Light] demo page content not appearingPlease premium templates are not in the scope of this forum.
Forum: Themes and Templates
In reply to: Need theme to buyYou could find the theme (if it is a template) usually in the style.css file:https://www.dcinternships.org/wp-content/themes/us-programs/style.css
OverDid Theme Framework is the framework.
But it seems that the author URL is not working.
Forum: Plugins
In reply to: [WooCommerce] Template override of form-pay.php not workingSame thing, thanks for the response.
Forum: Reviews
In reply to: [Custom Taxonomy Order] Doesn't work, didn't do anythingSorry my bad, but I think the item in the menu is out of context, since you want to sort certain taxonomy, it will be better the menu item to be in the taxonomies’ submenu.
Forum: Plugins
In reply to: [Date and Time Picker Field] Not showing saved data in edit screenGood news for you! The latest version works with the latest version of ACF.
Just update both plugins, I already did it.
Best regards!
Forum: Plugins
In reply to: [Date and Time Picker Field] Not showing saved data in edit screenDid you change it in the Add-on or ACF directly? I have the same problem, but I think that changing ACF plugin isn’t a good idea.
Forum: Plugins
In reply to: [Modern Browsing] [Plugin: Modern Browsing] Firefox 14.0.1Hi mvf1981!
The Firefox issue is already fixed, sorry for the BIG delay!Forum: Plugins
In reply to: [WooCommerce] Price not showing when variations have the same priceNope, I tried with the default theme on another wp installation, anyway, I changed line 1524 of class-wc-product.php
From this:
'price_html'=> $this->min_variation_price != $this->max_variation_price ? '<span class="price">' . $variation->get_price_html() . '</span>' : '',
To this:
'price_html' => '<span class="price">' . $variation->get_price_html() . '</span>'
It will be useful if they put it as an option in the admin panel.
Thanks,
Forum: Plugins
In reply to: [Modern Browsing] [Plugin: Modern Browsing] blank / page when enabledDone! Just upgrade the plugin ?? sorry for the inconvence
Forum: Plugins
In reply to: [Modern Browsing] [Plugin: Modern Browsing] blank / page when enabledHi gkaefer,
Let me check why it’s doing that.Best,
Forum: Fixing WordPress
In reply to: 404 Not Found error after migration from Win – LinuxHow did you resolved it?
Forum: Fixing WordPress
In reply to: How to chance shorcode positionThanks! Here is the new code…
function news_events_side() { $newscat = get_cat_id('news'); $eventscat = get_cat_id('events'); $output = '<div class="inner-news">'; $output .= '<h2 class="main-title">News & Events</h2>'; $shortnne = new WP_Query('cat='. $newscat . ','. $eventscat .'&showposts=2'); while ($shortnne->have_posts()) : $shortnne->the_post(); $output .= '<div class="mini-post">'; $output .= '<h4><a href="'. get_permalink() .'">' . get_the_title() . '</a></h4>'; $output .= '<p>' . get_custom_excerpt(10) . '<a href="' . get_permalink() .'">»</a></p>'; $output .= '</div>'; endwhile; wp_reset_postdata(); $output .= '<a href="#" class="see-more">See more</a></div>'; return $output; } add_shortcode('news_events', 'news_events_side');
Forum: Fixing WordPress
In reply to: How to chance shorcode positionthis is placed in the functions.php
function news_events_side() { ?> <div class="inner-news"> <h2 class="main-title">News & Events</h2> <?php $newscat = get_cat_id('news'); $eventscat = get_cat_id('events'); ?> <?php $shortnne = new WP_Query('cat='. $newscat . ','. $eventscat .'&showposts=2'); while ($shortnne->have_posts()) : $shortnne->the_post(); ?> <div class="mini-post"> <h4><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h4> <p><?php custom_excerpt(10,false) ?><a href="<?php the_permalink() ?>">»</a></p> </div> <?php endwhile; wp_reset_postdata(); ?> <a href="#" class="see-more">See more</a> </div> <?php } add_shortcode('news_events', 'news_events_side');
I don’t understand what do you mean with don’t echo, thanks!