krko
Forum Replies Created
-
Forum: Plugins
In reply to: [Abandoned Cart Lite for WooCommerce] I've translated the plugin into HebrewSent ??
Thanks WFMattR,
That’s the case probably as it works now.
Goran
I should note that I haven’t imposed any limits on how many email alerts to send in an hour. It’s empty.
it already was ??
664 however works. is there a risk leaving it at 664?Forum: Plugins
In reply to: [Event Registration] TranslationSame here. I’d like to know how to translate the front-end of the plugin into Hebrew.
I’d appreciate any guide in the right direction.Forum: Plugins
In reply to: [Mailgun for WordPress] Undefined variable sitename on line 140Hi Travis,
travis [at] mailgun [dot] com bounces ??
contact me please at studio [ a t ] goranphoto dot com as I’d like to beta test.
Goran
Forum: Everything else WordPress
In reply to: Help with SEOHello graphicgeek and thanks for the reply.
I have a sitemap. However the links which this theme creates are like this https://www.example.com/#post123 which Google treats like comments. Also, when I view the pages with lynx (pretty much the way Google sees my site) they show up empty. It’s like the text is somehow hidden.Forum: Themes and Templates
In reply to: Help finding a themei meant theme…
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Minify changes the layout of the websiteA little update…
Specifying a css file in minify tab, actually DELETES the reference to the css file from the source. For example, lets say in my source I have this:
<link rel=”stylesheet” href=”https://my-domain/wp-content/themes/themename/style.css” type=”text/css” media=”screen” />
So I go to minify tab and under css I add:
https://my-domain/wp-content/themes/themename/style.cssand than I refresh my website and view its source, it appears garbled and the actual reference to the css file is GONE from the source!
Btw, having minify enabled under general settings but no css file specified under the minify tab, works fine.
krko
Forum: Plugins
In reply to: Garbage characters when using W3 Total CacheThnx.
Forum: Plugins
In reply to: Garbage characters when using W3 Total CacheHi,
Thank you very much for the prompt answer.
I’ve had it that way for quite some time and I still encountered this problem. Is there anything else I can do?krko
Forum: Fixing WordPress
In reply to: Calendar widget – how to display posts from specific category only?Hi Michael,
Thank you once again for your help. I know that plugin however it doesn’t suit my needs. It doesn’t support non-latin characters (which I have to use in my website) so unfortunately it’s a no on this one. I’d much rather use the default calendar widget and make it display posts only from a specific gallery.
Can anyone point me in the right direction?
Thank you in advance.
krko
Forum: Fixing WordPress
In reply to: Calendar widget – how to display posts from specific category only?Hi Michael,
Thank you for your answer.
I’m using the default wp calendar widget. This is the code from default-widgets.php:/** * Calendar widget class * * @since 2.8.0 */ class WP_Widget_Calendar extends WP_Widget { function WP_Widget_Calendar() { $widget_ops = array('classname' => 'widget_calendar', 'description' => __( 'A calendar of your blog’s posts') ); $this->WP_Widget('calendar', __('Calendar'), $widget_ops); } function widget( $args, $instance ) { extract($args); $title = apply_filters('widget_title', empty($instance['title']) ? ' ' : $instance['title']); echo $before_widget; if ( $title ) echo $before_title . $title . $after_title; echo '<div id="calendar_wrap">'; get_calendar(); echo '</div>'; echo $after_widget; } function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags($new_instance['title']); return $instance; } function form( $instance ) { $instance = wp_parse_args( (array) $instance, array( 'title' => '' ) ); $title = strip_tags($instance['title']); ?> <p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?></label> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></p>
What should I change in there so it displays only posts from category X?
Thank you.
Goran
Forum: Fixing WordPress
In reply to: Calendar widget – how to display posts from specific category only?bump