snecz
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Parallax Content Slider] Multiple shortcode-SlidersFor me shortcode doesn’t work in 0.9.4 version. Do you have any idea how can I fix it?
Forum: Plugins
In reply to: [WP Parallax Content Slider] HELP NEEDED: TranslationsThanks.
But I have small problem: I have my new language files in local directory but I can’t see Polish alhough it is default language.Forum: Plugins
In reply to: [WP Parallax Content Slider] Multiple shortcode-SlidersHow this:
<?php if ( function_exists( 'get_wp_parallax_content_slider' ) ) { get_wp_parallax_content_slider(); } ?>
should look for different categories in your example in this development version?Forum: Plugins
In reply to: [WP Parallax Content Slider] Read More text and qtranslate pluginWhen I change language everything changes except for this.
For example “read more” in post excerpt changes for polish. But not in the slider.Forum: Plugins
In reply to: [WP Parallax Content Slider] HELP NEEDED: TranslationsI don’t know github that much…
Forum: Plugins
In reply to: [WP Parallax Content Slider] Read More text and qtranslate pluginDynamic
Forum: Plugins
In reply to: [WP Parallax Content Slider] Read More text and qtranslate pluginVersion 0.9.4
Forum: Plugins
In reply to: [WP Parallax Content Slider] HELP NEEDED: TranslationsJust added it on github
Forum: Plugins
In reply to: [WP Parallax Content Slider] HELP NEEDED: TranslationsI have ready polish translation. How can I send it?
Forum: Fixing WordPress
In reply to: Exclude sub-categorie from parent sub-categories listThanks a lot ?? Works like a charm ??
Forum: Fixing WordPress
In reply to: Making category name into linkIt depends on your theme.
What about making Blog a page, than in admin area setting Blog page as displaying posts and than adding Blog page into menu?Forum: Plugins
In reply to: Allow php in category descriptionThanks esmi.
But I’ve found plugin that resolves my problem:
https://www.ads-software.com/extend/plugins/rich-text-tags/
I could add nextgenn gallery shortcode into category description area.Forum: Plugins
In reply to: Allow php in category descriptionI have found this:
https://codex.www.ads-software.com/Function_Reference/get_the_categoryThere’s an information:
Show Category Images
This outputs category images named after the cat_ID with the alt attribute set to cat_name. You can also use any of the other member variables instead.
<?php foreach((get_the_category()) as $category) { echo '<img src="https://example.com/images/' . $category->cat_ID . '.jpg" alt="' . $category->cat_name . '" />'; } ?>
How can I use it in category template?
Forum: Plugins
In reply to: Allow php in category descriptionI want to display three images for category description. Different for each category.
I’d like to use nexten gallery shortcode:
<?php echo do_shortcode('[nggallery id=]'); ?>
Do you have any other idea how can I achieve that?
Forum: Fixing WordPress
In reply to: How to display not cropped fearured post thumbnails@keesiemeijer thanks a lot. That’s it!
<?php the_post_thumbnail('thumbnail'); ?>