raduzsvk
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Mobile menu not workingHello Denzel,
you are great, thank you!!! That was my mistake and inattention.
Thank you very much again. ??
Raduz
Forum: Plugins
In reply to: [Page Builder by WooRockets.com] Spaces not recognized in textHi mattrsullivan, I have exactly the same problem! It’s painful still control text. Is there any solution for this, did you find something?
Thank you.
Forum: Plugins
In reply to: [Attachment Taxonomies] Bulk ActionsHi Felix,
it’s a while since your last post regarding the bulk actions. So I’d like to ask you if you are planing to add this feature to the plugin. I am asking because it is very uncomfortable to manually add right category when you upload e.g. 90 photos.
Or is there a way how to add category at once for multiple photos?
Thank you for your answer.
Raduz
Forum: Plugins
In reply to: [Timetable and Event Schedule by MotoPress] Change timeformatHi Linda,
You welcome. I personally using the CSS Plus plug-in for WP. After install of this plug-in you will have the CSS window on each pagep/post editor page and where you can customize the CSS of current page.
So on page with your Event calendar use this to disable the All event drop down menu: .mptt-menu.mptt-navigation-select {display: none;}
And probably you can use this also in style.css in your Child theme.
Have a nice day. ??
Raduz
Forum: Plugins
In reply to: [Timetable and Event Schedule by MotoPress] Change timeformatHi Linda,
to do so, please change the time format in your WordPress settings: Settings -> General -> Time Format.
Have a nice day. ??
Raduz
Forum: Plugins
In reply to: [Timetable and Event Schedule by MotoPress] ErrorsHello MP,
to bring more light to this issue.
There is showing only one table with the current time between error codes. And for different language mutations I am using Polylang plugin.
Thank you in advance for your help!
Raduz
Forum: Themes and Templates
In reply to: [Hueman] Footer logo linkHi BD Brown,
thank you for your help! I manage it with following code at the end:
<div class="pad group"> <div class="grid one-half"> <?php $_footer_logo_img_src = hu_get_img_src_from_option('footer-logo'); ?> <?php if ( false !== $_footer_logo_img_src && ! empty($_footer_logo_img_src) ) : ?> <img id="footer-logo" src="<?php echo $_footer_logo_img_src; ?>" alt="<?php get_bloginfo('name'); ?>" usemap="#footerlogo"> <map name="footerlogo"> <area shape="rect" coords="0,0,66,50" alt="Logo" href="TYPE_URL_HERE" target="_blank"> </map> <?php endif; ?>
Have a nice day.
Raduz
Forum: Themes and Templates
In reply to: [Hueman] Custom Page Template Pagination not workingHi bdbrown,
thank you so much! First link helped me and now is everything working like a charm. Here is working custom page template code:
<?php /* Template Name: Custom page template */ ?> <?php get_header(); ?> <section class="content"> <?php get_template_part('parts/page-title'); ?> <div class="pad group"> <?php get_template_part('parts/featured'); ?> <?php $paged = ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1; $todaysDate = date('m/d/Y H:i:s'); ?> <?php query_posts('paged=' . $paged . '&posts_per_page=6&category_name=TYPE_HERE_YOUR_CATEGORY_NAME_SLUG'); ?> <?php if (have_posts() ) : ?> <div class="post-list group"> <?php $i = 1; echo '<div class="post-row">'; while (have_posts() ) : the_post(); ?> <?php get_template_part('content'); ?> <?php if($i % 2 == 0) { echo '</div><div class="post-row">'; } $i++; endwhile; echo '</div>'; ?> </div><!--/.post-list--> <?php get_template_part('parts/pagination'); ?> <?php endif; ?> <?php wp_reset_query() ?> </div><!--/.pad--> </section><!--/.content--> <?php get_sidebar(); ?> <?php get_footer(); ?>
Raduz