Forum Replies Created
-
AuthorPosts
-
found this link
how to combine code from that link
$(“css class”).hover(
function() {
$(this).stop().animate({“opacity”: “0”}, “slow”);
},
function() {
$(this).stop().animate({“opacity”: “1”}, “slow”);
});
});white this code you provide
function add_custom_image(){
?>
<script>
jQuery(window).load(function(){
jQuery(‘.zamena img’).hover(function(){
jQuery(‘.zamena img’).attr(‘src’,’URL’);
});
jQuery(‘.zamena img’).mouseleave(function(){
jQuery(‘.zamena img’).attr(‘src’,’URL’);
});
});
</script>
<?php
}
add_action(‘wp_footer’, ‘add_custom_image’);to get smooth image transition
i tried to copy/paste code from that link i provide into code block but image is not responsive and on mobile content beneath image is over image
- This reply was modified 7 years, 4 months ago by Uros.
I did something like this, but fading is reacting strange…like doubling fade out, fade in , fade out, fade in…how to stop fading after one set of fadeout fadein?
should i place “return false” somewhere? i tried to put at the end of the code but that did not work
function add_custom_image(){
?>
<script>
jQuery(window).load(function(){
jQuery(‘.zamena img’).hover(function(){
jQuery(‘.zamena img’).fadeOut(1000, function() {
jQuery(‘.zamena img’).attr(‘src’,url’);
});
});
jQuery(‘.zamena img’).mouseleave(function(){
jQuery(‘.zamena img’).fadeIn(1000, function() {
jQuery(‘.zamena img’).attr(‘src’,’url’);
});
});
</script>
<?php
}
add_action(‘wp_footer’, ‘add_custom_image’);- This reply was modified 7 years, 4 months ago by Uros.
June 20, 2017 at 6:39 pm in reply to: Tab section buttons not working on Firefox after latest updates #810574@Mariusz fix worked for me. Thanks man :)
Can anyone help me on this problem?
nope that did not show featured image on category page
http://hrms.rs/kategorija/konferencije/i want to have featured image visible like on this page (main blog page set in enfold options for blog page)
why is blog category page (Konferencije) different looking then main blog ( EDUKACIJE ). i set it in enfold options > blog layout > use the advance layout editor to build your own blog layout. Featured image is missing and gray background
- This reply was modified 7 years, 5 months ago by Uros.
sorry changed url here is the right one
Hey guys any help here…i really need those icons
i try to import zip file with icons via another plugin to see if there is a problem with uploading zip files….i successfully uploaded. I can not use other plugins because i need icon list element from your theme.
please login to my site and see if you can fix that problem.
/* Multisite */
define( ‘WP_ALLOW_MULTISITE’, true );and restore .htaccess to a single site setup
everything is working fine except uploading icons. same message like on multisite
hey guys any help here?
ok…cool..thanks
there is 12 icons
i erase codes from wp-config.php file for multisite
i think there is no error report
this is what i get when i try to upload
Dalen…to justify text – select text and press ALT+SHIFT+J
April 1, 2017 at 3:08 pm in reply to: Apply external link to a language flag inside language selector #770329i work around and solve problem with another method…thank you anyway
Thank you very much it worked perfectly
hey guys any help here please?
i think that would change text on the english part too
Isn’t there way to combine this two codes:
add_filter(‘avf_logo’,’av_change_logo’);
function av_change_logo($logo)
{
$lang = pll_current_language(‘locale’);
switch ($lang) {
case ‘en_GB’:
$logo = “image url.png”;
break;
case ‘sr_RS’:
$logo = “image url.png”;
break;
}
return $logo;
}AND
function new_excerpt_more($more) {
global $post;
return ‘ID) . ‘”> Read the full article…‘;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);nope, that did not change read more button.
February 20, 2017 at 3:53 pm in reply to: reloading page on button click – add to cart button #749411Can i add custom class for buttons and create some JS codes that will prevent page reloading like:
function getData(e) {
e.preventDefault();
}or
onclick=”getData(); return false;
and put it in “code block” element…if yes can you write me that code
Ismael thank you …that was problem!
yup..that did the trick…
I appreciate your help but probably i did not explained very well to you my problem….
Here is image of what is wrong
So the problem is when screen is like on image 975 px width and i set css code media screen for max-width: 1024px it ignores that line and read media screen for max-width: 1680px
Problem is only for text blocks…I also set media screen “max-width” values for headlines when they break in second line i set css code to increase margin-bottom so text below will be in line at top.
Try to manually resize window to 1024px to see what i am talking about for headlines….
Why is not reading values from media screen max-width: 1024px?
I installed “My Custom CSS” plugin and no it’s not working
i can not use that function because i have different element inside cell…like headline, image, text and button and i want everything to be in line. so i have to add class in text to push button down to make it equal with cell next to it.
I have done that exactly on english part of website and its working perfectly but when i do that in russian part it is reading the biggest screen size…in this case its 1920px. i don’t get it why is that code working on english part end not on russian part. Is it because css do not like russians? :)
- This reply was modified 7 years, 9 months ago by Uros.
testdomen.xyz is not mine, it’s client domen and i used that domen to built him website for client. I checked my website with online scanners and everything is ok.
Website is optimized but what about that testdomen.xyz that website is not mine? why is my website loading it?
I return it to 4.7.1 but now i dont think update is reason of slowing down loading pages…can you check this image i upload. it is print screen of my desktop…if you reload second time website you can see that my website is connecting to other website??? o_0
Hey,
I used some css code and custom css field to fix that….thanks for answer anyway
Hey guys any help here…just this last one to change?
-
AuthorPosts