edumusa
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate] Change logo image based on language selected ?i made this for one of my websites, in the header.php:
<div class="home-link"> <a href="<?php qtrans_convertURL( bloginfo('url') ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> <img src="<?php echo get_template_directory_uri(); ?> <?php if ( qtrans_getLanguage() == "pt" ){ echo '/images/logo-dpa-284.png' ?> <?php } else if ( qtrans_getLanguage() == "en" ){ echo '/images/logo-oh.png' ?><?php } ?> " width="284" height="48" alt="logo homepage"> </a> </div>
Forum: Plugins
In reply to: [Event List] translationshello, i’m using qtranslate plugin, wondering if EL will have support for it in this next release?
Forum: Plugins
In reply to: [Meet My Team] Pop up alignment problemin my website i used some css to put the modal in position i wanted, had to set z-index at a high level and margin-top at a negative value to put it up.
Since bios has different sizes i believe its difficult to center-align vertically. Horizontally i suggest you use a fixed width with negative margin-left, 50%.
You can use inspector to check the classes, but i can tell the modal is .reveal-modal.
hope that helps.Forum: Plugins
In reply to: [Flamingo] Subject in saved Inbound MessagesBigYin,
how did you do it please?Forum: Plugins
In reply to: [Flamingo] Files attachedsame here…
Forum: Plugins
In reply to: [Useful Banner Manager] qtranslate conflictGREAT MAN!
Perfect timing!
Many Thanks!!Forum: Plugins
In reply to: [Meet My Team] How/Where to Add FieldsYeah awillard108!
this worked nicely for me!
thanx
Forum: Plugins
In reply to: [qTranslate] Autoupdate to WP 3.8.3 has disabled qTranslate pluginSolution from iggyvolz worked for me as well, my version had the 3.8.1 line.
I noticed sometimes the plugin starts working fine, but after some activation or deactivation of other plugins breaks it.
And ma_wordpressorg, i have set an auto_update line to false in the wp-config file from all websites i make.Forum: Plugins
In reply to: Nextgen lightbox conflict with a jqueryok…
so i finally did it!just removed the line:
jQuery("body").mousewheel(function(event, delta) { this.scrollLeft -= (delta * 30); event.preventDefault(); });
any one seeking some ideas… there it is.
Forum: Plugins
In reply to: Instafeed hack with bxslider conflict with media upload and contact form 7ok!
so i did make it work!
following the lead that i should apply some kind of a reload or refresh function, i searched all around until i found a piece of code from some other issue that guided me through the solution.
So i just left the plugin untouched, used it’s own class as a target, and changed the first line of the Jquery:$(window).load(function() { $('.instafeed_widget_list').bxSlider({ slideWidth: 160, minSlides: 2, maxSlides: 7, moveSlides: 4, slideMargin: 1, pager : false }); });
this way the jquery runs after the page content loads. Takes a while, but works fine!
I hope this thread helps anybody out there with this kind of trouble…
??Forum: Plugins
In reply to: Instafeed hack with bxslider conflict with media upload and contact form 7well… i didn’t get it yet, but i now left the plugin with no hacks at all, using the original class in the jquery, and still needs a refresh for loading, but not in all pages, only on the first load it’s not working.
But i can’t leave the page that way, when visitors access the website for the first time, in the homepage, has to be perfect…
i even tried a refresh metatag, but then the page takes to long to get stable.
i really need some thoughts.