wpo-HR
Forum Replies Created
-
Forum: Plugins
In reply to: [NGG Smart Image Search] Erm?gliche Uploader SelektionDa im Feld uploader die user id abgespeichert wird, ist dadurch sein Format schon vorgegeben. Du solltest schon entsprechende eigene SQL Kenntnisse haben wenn du damit experimentieren wolltest.
Bei Zufriedenheit sind kurze Reviews auch willkommen:-).Forum: Plugins
In reply to: [NGG Smart Image Search] Erm?gliche Uploader SelektionDas Feld uploader ist eigentlich keine Standardfunktionalit?t des Plugins. Es ist ein Zusatzfeld in der Tabelle ngg_pictures, das man per SQL manuell anfügen muss. Wenn vorhanden, wird bei einem Upload von Bildern automatisch die user ID (aus der wordpress users Tabelle) des angemeldeten Benutzers beim Bild abgespeichert.
Ich verwende diese Funktionalit?t in unserem Fotoclub, um Eigentümer hochgeladener Bilder nachvollziehen zu k?mmen. Damit wird z.B. verhindert, das bei Internetabstimmungen (ein weiteres unver?ffentliches Plugin) Benutzer nicht ihre eigenen Bilder bewerten sondern nur Bilder anderer Benutzer.
Es gibt keine direkten Pflegefunktionen für dieses Feld.
Da ich nur eine Version meines Plugins pflegen will, habe ich diese uploader-Funktionalit?t auch im ver?ffentlichten Plugin integriert, ohne sie allerdings aktiv zu propagieren.Forum: Plugins
In reply to: [NGG Smart Image Search] How to change language?Der oben genannte englische Text sollte statisch auf der Suchseite eingebunden sein (vor dem folgenden shortcode hr_SIS_search_nextgen_images zur Ergebnisanzeige). Einfach mit ‘Bearbeiten’ auf die Suchseite gehen und den Text wunschgem?? anpassen.
(Ich bin mir momentan nicht mehr sicher, ob bei dem hr_SIS_textbox shortcode die übersetzung automatisch generiert wird. Ich glaube nicht, da der Text von den Parametern eines anderen shortcodes abh?ngig ist.)Forum: Plugins
In reply to: [NGG Smart Image Search] How to change language?Achtung: nicht Deutsch(Sie) sondern nur Deutsch einstellen.
Forum: Plugins
In reply to: [NGG Smart Image Search] How to change language?Sollte eigentlich so funktionieren.
Zur Sicherheit überprüfen:
auf dem Webserver der WordPress-Instanz sollte im Verzeichnis /wp-content/languages/plugins/ die übersetzungsdateien ngg-smart-image-search-de_DE.mo und ~.po vorhanden sein.
Ansonsten noch prüfen, ob windows Spracheinstellungen ebenfalls auf deutsch stehen.Forum: Plugins
In reply to: [NGG Smart Image Search] How to change language?Dieses Plugin unterstützt deutsch und englisch automatisch, abh?ngig von den Sprachsettings von WordPress.
Forum: Plugins
In reply to: [NGG Smart Image Search] Hide magnifying icon next to search boxYou still use the general theme dependant style for the searchform on your website, therefore the plugin specific CSS customization cannot work.
You have first to select the plugin specific style on the setting page of the plugin before the given CSS customization will work.Forum: Plugins
In reply to: [NGG Smart Image Search] Hide magnifying icon next to search boxSizing the magnifying icon is a bit tricky, as it heavily depends on general theme settings, especially if the theme is responsive.
However, you can hide the icon by css settings. Normally a theme offers the possibility to add custom css.If you use the general theme dependant style, add the following css:
form.search-form button.search-submit { display: none !important; }
However, this might impact other search fields of your theme as well.To be on the save side, use the plugin specific style and add this css:
form.hr-searchform-box button.hr_searchsubmit { display: none !important; }
This should hide the icon only for this plugin.Forum: Plugins
In reply to: [NGG Smart Image Search] Cannot find certain configuration features –Paging is now working on your site correctly.
However, you have to specify your display parameter si correctly.
Just write
display=si
If you want to use delimiters, you must use delimiter ‘ or delimiter “, i.e.
display=’si’ or dispaly=”si”.
You must not use ”, because this is not accepted as a delimiter by php and will be interpreted as part of the display parameter.To switch of warnings should be possible by php settings.
To eliminate the warning regarding use of Modernzr will take some days (currently quite busy).Forum: Plugins
In reply to: [NGG Smart Image Search] Cannot find certain configuration features –Sorry, the file got corrupted during upload somehow.
The link to the test version should now work.Forum: Plugins
In reply to: [NGG Smart Image Search] Changing placeholder textYou can use the parameter ‘placeholder_text’ for the searchbox shortcode to define your own placeholder text.
If you use the search widget, there is an explicit input field ‘placeholder’ where you can define your placeholder text.
Forum: Plugins
In reply to: [NGG Smart Image Search] Cannot find certain configuration features –Normally the code you provided should work (at least it works fine in my environment). I suppose that you use some strict settings in your php environment which enforce explicit specification of an empty array parameter.
I included this empty array parameter for you to test it.
You can download this test version 3.1.1 from my website and manually install it.Note: this will install the test plugin in a seperate directory parallel to your productive version. You must first deactivate the current version before activating the test version. You can switch back to the productive version in the same way (first deactivate the other version, than active).
Forum: Plugins
In reply to: [NGG Smart Image Search] Cannot find certain configuration features –The search widget and the search shortcode use a parameter ‘limit’ to limit the scope of search (i.e. the size of the result list). By default this parameter is set to 30 (for public users) or to 80 (for logged in users).
If you use the parameter images_per_page it only makes sense if this parameter is set to a value smaller than the limit parameter.
If you see the text (Number of displayed images limited by settings.) this means that the number of search results was limited by the limit parameter and that there would be more results if the limit parameter is increased.
[hr_SIS_nextgen_searchbox limit=120] will do the job.
Forum: Plugins
In reply to: [NGG Smart Image Search] Cannot find certain configuration features –You will see the configuration box if you set up a search widget.
Pagination will work if you define the parameter images_per_page for the display shortcode. If you experience problems, please provide a link to your search page and the setup of your shortcodes.
Bets regards
HaraldForum: Plugins
In reply to: [NGG Smart Image Search] Empty on result pageHi Fredrik,
the plugin provides an extensive functionality for searching images. You find more information on my webpage r-fotos.de.Your plugin will use the basic search mode by default. Here all search terms are combined with a logical OR: ‘tree river’ will search for images having a tree OR river reference. This is the normal way searches will work (e.g. google search). If you want it differently, you have to search for ‘tree & river’. This will find all images satisfying both conditions (logical AND).
The plugin implements quite complex searches, but that is more for experts or webmasters. They can provide static searches, which generate results far beyond standard selection means of the NextGEN gallery software.
Best regards
Harald- This reply was modified 5 years, 5 months ago by wpo-HR.