DasSkar
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] next/ back button doesnt work..I’m experiencing the very same problem.
Plugins, javascripts (no error at firebug console) and theme (customized highwind) not seem to be the problem.In my scenario i use two widgets – first Grid (Month View) with paging, second is List with paging disabled.
Changing the second to paging enabled it works fine again for the first too.
Disable Grid View while enabling List works as expected.Now i switched the order – moved Grid beneath List view – paging works if Grid is set to do paging. If the last widget is set to disable nothing works.
So it’s some kind of conditional race. I can not position a widget with paging links over a widget without paging links.
I don’t know exactly when it last worked but once it did.
Maybe you could get your hands on this.
Nevertheless thanks for your great plugin ??
Hi iThemes Support,
i experienced the very same problem.
Turned out it’s from your
RewriteCond %{QUERY_STRING} ^.*(\[|\]|\(|\)|<|>|ê|"|;|\?|\*|=$).* [NC,OR]
Link is like
/?wysija-page=1&controller=confirm&wysija-key=ff1111f11ff1111ff1f111f11f111fff&action=subscribe&wysijap=subscriptions&wysiconf=WyAaAl0=
Your regex catches the very last =
Forum: Themes and Templates
In reply to: [Highwind] Remove AvatarIf you really want to customize it more then you can do by gui you better take a look at child themes. It’s a quick thing to do and avoids some headache once the next theme updates are available.
Forum: Themes and Templates
In reply to: [Highwind] More issues with compatibility??Hi Jon,
it’s a problem of your wordpress installation !
checkout your source code – everything’s linked via your hosters ip not your domain.Forum: Themes and Templates
In reply to: [Highwind] Removing author, date and tags from post@cconstantine:
That’s true. But there may be reasons not only to hide them but totally remove them.
Only hide with css still keeps it at the source code.btw here’s a better example of the code that should be insert into functions.php. Just remove whatever you don’t want to appear.
function highwind_post_meta() { if ( ! is_page() ) { ?> <aside class="post-meta"> <ul> <li class="categories"><?php the_category( ', ' ); ?></li> <li class="comment"><?php comments_popup_link( __( '0 Comments', 'highwind' ), __( '1 Comment', 'highwind' ), __( '% Comments', 'highwind' ) ); ?></li> <?php the_tags( '<li class="tags">', ', ','</li>' ); ?> <?php if ( apply_filters( 'highwind_meta_author', true ) ) { ?> <li class="author"><?php if ( apply_filters( 'highwind_meta_author_link', true ) ) { the_author_posts_link(); } else { the_author(); } ?></li> <?php } // endif ?> </ul> </aside><!-- /.post-meta --> <?php } }
Forum: Themes and Templates
In reply to: [Highwind] Problem with smiliesIt really depends on your html and css code.
So it’s hard to say from image onlyForum: Themes and Templates
In reply to: [Highwind] Back To Top Button Not Showingit’s within framework/js/script.js and depends on jquery.
so jquery must be loaded before script.js
take care of any caching or minifying plugins and turn them off to test it.Forum: Themes and Templates
In reply to: [Highwind] Removing author, date and tags from postfunction highwind_post_meta (framework/highwind-template.php) prints out this data.
copy this to your function.php (without the starting ‘if ( ! function_exists( ‘highwind_post_meta’ ) ) {‘) and fit it to your needs.
this overrides framework/highwind-template.phpForum: Themes and Templates
In reply to: [Highwind] Perfect in Chrome, but Menu not correct in ExplorerHi jon,
i only took a quick look. your code is a bit buggy.
why is the style element (width 48px) within body ? is it from the social icons plugin ? nevertheless it’s not compliant to rfc
-> either set it as attribute to the img-elements or better put it into your style.css (get in touch with child themes)also there’s a duplicate id=”acurax_si_simple” (sidebar and footer) -> that may be the reason for your problem
both problems don’t come from highwind theme.
so sort this out first ??Forum: Themes and Templates
In reply to: [Highwind] Remove AvatarHello audifanatic,
find it here
Forum: Themes and Templates
In reply to: [Highwind] Ipad strange behaviour with mobile nav vs regular navHello Svenntie,
the website you mention has no top menu (at least right now). So it can’t work.
Your own website has the css fix included and works for me (ipad 2, ios 7.1)
Maybe it’s only a cache problem ?You can clear the cache at Settings -> Safari -> Clear Data (or similiar, my ipad gui isn’t english).
Forum: Plugins
In reply to: [WP Super Cache] Link to WPSCMin says 'forbidden'Take a look at GitHub. Please read the disclaimer.
Forum: Themes and Templates
In reply to: [Highwind] Header Size & Font@rosecolleran:
Yes it does reduce the height as well.You may use an developer tool for your browser to test it before (Firebug for firefox or build-in tools of safari or chrome)
Forum: Themes and Templates
In reply to: [Highwind] Header Size & FontHeader box is meant to be over the whole width. So it should not only take half of the screen but the whole.
Font size could be reduced. You need to edit your theme manually.
Best practice is using a child theme.
Within your child style.css you can add something like.site-intro {font-size: 0.9 em;}
Forum: Themes and Templates
In reply to: [Highwind] Ipad strange behaviour with mobile nav vs regular navHi Svenntie,
as i need this for myself i did a quick workaround (see issue at github)
Best practice would be putting it into style.css into your childtheme.