Forum Replies Created
-
AuthorPosts
-
Hi elp!
Use is_page inside that function to filter certain pages only (ID):
<?php add_filter('the_title','some_callback'); function some_callback($data){ global $post; if(!is_page()){ return $data; }elseif(is_page(42){ return 'HELLO ' . $post->ID . ' - ' . $data; } }
You can also pass an array to is_page(), ex: is_page(array(23, 32));
http://codex.wordpress.org/Function_Reference/is_page
Cheers!
JosueNovember 21, 2013 at 2:52 am in reply to: Change position of header background image on ipad #191266Hey Herrbirk!
Have you tried setting the background position as “bottom left” or “bottom right”?
.header_bg {background: url(https://gitaarsalon.groeier.nl/wp-content/uploads/2013/11/Gitaarsalon-2560x450pxBoven221.png) no-repeat bottom right;
Best regards,
JosueHey Günter!
But those errors are not displaying in the actual page, i’m only seeing in the search results, they will probably vanish in the following days, re-indexing can take some time.
Cheers!
JosueHi dreelondon!
It’s possible, you’d have to put the link in raw HTML, please take a look at this topic: https://kriesi.at/support/topic/how-to-use-iframes-with-prettyphoto/
Cheers!
JosueHey!
Add this code to the Quick CSS:
@-moz-keyframes customanimation { 0% { opacity: 0 } 100% { opacity: 1 } } @-webkit-keyframes "customanimation" { 0% { opacity: 0 } 100% { opacity: 1 } } @keyframes customanimation { 0% { opacity: 0 } 100% { opacity: 1 } } .active-slide .slideshow_align_caption { -webkit-animation: customanimation 1s; -moz-animation: customanimation 1s; animation: customanimation 1s; }
Cheers!
JosueNovember 21, 2013 at 2:12 am in reply to: event tracking with google analytics + mega menu font color #191234Hi!
Looks like you’ve already managed the megamenu issue.
Regarding the GA push link, you can use the raw HTML version of a [button] wherever you want to have it:
<a onclick="_gaq.push(['_trackEvent', 'Purchase', 'Banner', 'Bla']);" href="#" class="avia-button avia-icon_select-yes avia-color-theme-color avia-size-small avia-position-center "><span class="avia_button_icon" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><span class="avia_iconbox_title">Click me</span></a>
Regards,
JosueHey Nick!
That behavior is unexpected, it doesn’t happen neither in the demo nor in my local installation, try the following:
1. Disable all third-party plugins (some js may be conflicting).
2. Re-install the theme (backup any theme modification you’ve made first).Best regards,
JosueNovember 21, 2013 at 1:37 am in reply to: Avia Advanced Editor doesn't load with WordPress SEO by Yoast Plugin #191222I said i performed some tests with the Yoast plugin enabled and it didn’t present any problems so far:
http://www.creativmade.com/wp-admin/post.php?post=1979&action=edit&message=10
Regards,
JosueHi,
Maybe, can you post a link to your gallery please?
Regards,
JosueHey!
Yes, you can, use the css/custom.css.
Best regards,
JosueHi,
Try adding this code to the Quick CSS:
.post-meta-infos .text-sep.text-sep-cat { padding-left: 2px; }
Regards,
JosueNovember 20, 2013 at 2:25 am in reply to: event tracking with google analytics + mega menu font color #190785Hey Eran!
Where do you want to add that tracking link?
Regarding the mega-menu coloring, it’s because you have this on the Quick CSS:
.header_color .main_menu ul:first-child > li > a { color: black!important; font-weight: normal; font-size: 16px; }
Cheers!
JosueHi,
Can you post a link to your website please?
Regards,
JosueGlad we could help :)
Regards,
JosueNovember 19, 2013 at 7:02 am in reply to: Avia Advanced Editor doesn't load with WordPress SEO by Yoast Plugin #190472This reply has been marked as private.That’s a temporary solution, a final fix will probably be included in future releases.
Best regards,
JosueHey Joe,
This is the final code that made the trick (at the end of js/avia.js):
jQuery(window).on('load', function(){ jQuery(window).resize(); });
I noted that the bug gets fixed if the window is resized, so that code simulates a resize after all the page is loaded.
Cheers!
JosueHi!
Could you post a screenshot indicating what exactly you want to remove?
Regards,
JosueHey!
Try adding this to the Quick CSS:
hr, .hr {display: none !important; }
Regards,
JosueNovember 18, 2013 at 7:59 pm in reply to: Avia Advanced Editor doesn't load with WordPress SEO by Yoast Plugin #190273Hi,
Can you create an administrator account and post it here as a private reply?
Regards,
JosueExcellent, you are welcome, glad we could help :)
Regards,
JosueHey!
Add this code to the Quick CSS:
#ringbuilder .container { width: 100% !important; }
Cheers!
JosueHi,
Can you create an administrator account and post it here as a private reply?
Regards,
JosueHola,
No había visto este post, lo voy a cerrar ya que el problema se soluciono por correo :)
Saludos,
JosueHey Jonathan!
Is that iframe inside a color section? define it an ID and apply this code to the Quick CSS:
#my_id .container{ width: 100%: }
It would result something like this:
Cheers!
JosueOk, see it now:
http://ivankaart.com/galleries/imotion/Best regards,
JosueHey!
It appears to be an issue related with the framed content, not theme related, have a look at this test i made in pure HTML (same behavior):
http://codepen.io/josueochoa/full/KrDJzCheers!
JosueHi!
First, please update your theme to the latest version (2.4.2), then make sure you are using these settings (Centered or Centered Framed) when creating the caption:
Regards,
Josue -
AuthorPosts