Forum Replies Created
-
AuthorPosts
-
HI Ismael, thanks for your reply.
Any possibilities to change this within the child theme to avoid that the modifications get overwritten?Added styling to style.css.
Works, thx!OSX 10.10.2, Safari 8.0.4
works fine on chrome and firefox.Hi Yigit,
this leads to strange effect, maybe because I’ve got two accordions on the page.
But anyhow, your tipp was great. I just changedjQuery('.toggler').addClass('activeTitle');
tojQuery('[data-fake-id="#toggle-id-1"]').addClass('activeTitle'); jQuery('[data-fake-id="#toggle-id-2"]').addClass('activeTitle');
thx, fritz
This reply has been marked as private.This reply has been marked as private.Great. Works fine. thx.
Actually I found another solution without Javascript here: http://rocketgeek.com/tips-and-tricks/redirecting-wordpress-login-and-logout-urls/ok.
@all: this is the fix mentioned:
.av-hotspot-container {display: block }This reply has been marked as private.Great! Exactly what I was looking for this moment!
Portfolio back|next is now limited to the category!
Thanks Devin.Thanks for the clear answer. Hope I will remember this on the next update. Regards, fritz
(pls. close)August 28, 2014 at 12:14 pm in reply to: Displaying Header Social Icons without menu items | Bug #310374better than before, but still strange somehow …
Found the following statement in http://codex.wordpress.org/Conditional_Tags :
“…For themes, this means the conditional tag will never work properly if you are using it in the body of functions.php, i.e. outside of a function..”So the solution is to place the condition INSIDE a function and NOT directly in functions.php. The following code snippet works:
function register_myscripts() { if(is_page( ::pageid:: )) { // needs to be INSIDE the function $child_theme_url = get_stylesheet_directory_uri(); wp_register_script( 'myscript_name', $child_theme_url.'/js/myscript.js', array('jquery'), "4", false); wp_enqueue_script( 'myscript_name' ); } } add_action('wp_enqueue_scripts', 'register_myscripts', 100);
regards, fri_z
@jQuery issue: replace
$( ... )
withjQuery( ... )
as mentioned here: http://codex.wordpress.org/Function_Reference/wp_enqueue_script#jQuery_noConflict_WrappersJust figured out that the CSS max-width: 100% is causing the resizing.
For anybody having the same problem, just use:
max-width: none;
(pls. close this issue)August 22, 2014 at 9:53 am in reply to: Masonry, show container from portfolio entry instead of image #307720Thanks anyhow!
thx for your response. I’ve added this to the feature requests. regards, fritz
You’re right! I didn’t take care because it worked for two charts, but it obviously does not for another one.
Charts are now OK, no javascript error at all. Still there’s an issue that the rendering of the charts in the slider doesn’t work properly… Guess this is something I need to check out with HighCharts.
Many thanks for your help!This reply has been marked as private.This reply has been marked as private.may I send u the login credentials per mail, address?
-
AuthorPosts