Sofian777
Forum Replies Created
-
I have the same issue after using “Convert Post Types” plugin. Doesn’t recognize the posts that have been converted into pages. Disabling and enabling back the plugin has helped to show them all again.
Forum: Reviews
In reply to: [Special Recent Posts] A-Ma-ZingToday I found the “AMR Shortcode any Widget” Plugin, with which any widget can be displayed everywhere. In this way the easy widget settings can be used, no need to code SRP Lists via Shortcode. So, 99% of my dream came true 🙂
Forum: Reviews
In reply to: [WP Editor Widget] Nice, but only allows ONE widget?Me neither, works fine with many widgets
Forum: Plugins
In reply to: [NextGEN Gallery Search] userside gallery searchHello there,
i just wished the same and couldnt find it anywhere in the web, which is a mystery to me because it seems such a natural need, and i wonder that from the 11 million downloads of NGG there are not at least 1 million requesting this feature 🙂
With a little bit of inventiveness i now patchworked a two lines supereasy solution for myself, which should do it until Koen extended his plugin.
It only works with one searchword for the moment, at least it just ignores additional words and not leading to malfunction.
So i have just put
<?php $search_query = get_search_query(); echo do_shortcode( '[nggtags gallery=' . $search_query . ' ]' );?>into my search.php, and it works! As result it gives back a list of thumbs of the images that are tagged with the search term.
Maybe someone can make it work even with more search terms ( i am not php enough but it should be very easy since just all spacebars have to be replaced with commas (search query gives back word1 word2 and the shortcode needs word1,word2))
So far for tonight, i also wrote to photocrati, since i really cannot believe this doesnt exist yet. Maybe in PRO or PLUS versions they have it. I’ll keep you up-to-date.
Best wishes
SofianForum: Plugins
In reply to: [List category posts] Version 0.46 and a message to the plugin usersCould you tell me, in best case in the other thread (sorry for bringing this into here) or by mail, how i can for the moment “hack” it by myself? I guess it is just one if line, so maybe i can help myself out for the moment.
Forum: Plugins
In reply to: [List category posts] Version 0.46 and a message to the plugin usersAh yes here is an english donate button, thats fine.
One question, is this already integrated and should work, because it doesn’t seem so:
“I’ll add a condition for when there are no tags to not show any posts. Thanks!”And please just a short note if you consider to integrate this, it is not urgent, but if you see no sense and will not integrate at all, i can look for other solutions:
http://ww.wp.xz.cn/support/topic/showing-selected-single-posts?replies=1Just a quick respond about the actual state would be appreciated.
Thank you and sunny days 🙂Forum: Plugins
In reply to: [List category posts] Version 0.46 and a message to the plugin usersAfter reading your post i now also updated on a test site, and all lists look the same, even the ones i really tweaked and bended a lot with CSS and many parameters. Can you send a link to have a look on the weird formattings? So far i cannot confirm any mess.
Forum: Plugins
In reply to: [List category posts] Version 0.46 and a message to the plugin usersThanks a lot for all your efforts with which you enrich the work of so many users. clicking on your profile name i came to your site on which i found a donation button. unfortunately i cannot find a way to switch the language from spanish to english, and i really dont know any spanish. if paypal doesnt offer this possibility, could you add another button for english donators? i hope also donations help you to spend more time with the things you like most (i dont know what your regular work is and i hope it is a fulfilling one as well, but i am at least sure this plugin is a project where your full heart is into). just a short observation.
Forum: Plugins
In reply to: [List category posts] lcp_catst thumbanails css styleyou are welcome mandy. if you didnt do already, you should check out how to create childthemes, which is quite easy, otherwise the styles will get lost with the next update. enjoy your work 🙂
Forum: Plugins
In reply to: [List category posts] lcp_catst thumbanails css styleCan you try to put it into your style.css?
If this doesnt work, check with Firebug if it took it but doesnt execute it, or if it is not even loaded.Did you try if the rules for the categories also apply to the tags? you need the AND relationsship
Posts from several categories with an AND relationship, posts that belong to all of the listed categories (note this does not show posts from any children of these categories): [catlist id=17+25+2] – [catlist name=sega+nintendo].
you find it in the instructions on top
http://ww.wp.xz.cn/plugins/list-category-posts/other_notes/Forum: Plugins
In reply to: [List category posts] Detecting current tagsI just read another post now:
http://ww.wp.xz.cn/support/topic/remove-current-post-from-list
which solves my last point here.Forum: Plugins
In reply to: [List category posts] Including and formatting images in listsSidenote: Now i read again you are relatively new, so i dont know if “you can have a look for inspiration” is clear how to do it. Do you know Firebug? It is a plugin for Firefox which is super useful for webdesigners. It shows you the CSS of every element on the site, in this way you can easily “have a look” into how other sites did their things. Just in case you didn’t know about it yet…
Forum: Plugins
In reply to: [List category posts] Including and formatting images in listsSo you use your own template already, recipe? There you need to switch things, for example taking the line with the thumbs before the title. for alignment you could use a div with vertical-align:center. Actually you need to build this up in the template and your CSS. Maybe try out “dry” offline in a HTML doc how you need to put the HTML and CSS, and then you integrate it into your site’s CSS and the recipe template. You can have a look for inspiration at the source code and CSS of our list which is also done with this plugin here.
http://imlichte.net/seminare-und-workshops/You have a very nice website by the way, i like the way your popular post display in the sidebar. I will also have a look there in your code for inspiration 🙂
Forum: Plugins
In reply to: [List category posts] Detecting current tagsThe shortcode didnt simply work, i added
add_filter('widget_text', 'do_shortcode');
to my functions.php 😉I made now more detailed testing and it is true, it works after the AND principle, the mistake was in our tag structure that made it look different. With specific testposts i can now confirm AND.
Yet i discovered
– one unclear behaviour:
When the post has no tag, or a page is opened (which has no tags by nature), the error message is fixed, but the list is not empty, but full, it seems to take “nothing” for “everything”. Maybe a little “if posthavetag” or something could avoid this. I think if there is no match, it needs to be empty.– one improvement:
the post itself is also listed, which i think in rare cases is wanted or needed. can it be excluded?