Beiträge von deevau

    Hallo allerseits,

    kennt hier jemand eine Komponente mit Modul bei dem der User im frontend nach Kategorien filtern kann?

    Beispiel:

    -Alle Lokationen

    -Foodsharing

    -Gebrauchtmöbel

    -Reparaturhilfen


    Prinzipiell wie Karte von morgen

    Soll nicht zu kompliziert zu konfigurieren sein, kann was kosten, soll natürlich responsive sein. Phoca Maps soll das laut Entwickler so ohne Weiteres nicht können...

    Danke für's grübeln!

    Hallo allerseits!

    Kennt jemand ein Modul bzw. plugin in dem die Beiträge einer bestimmten Kategorie (z.B. Modul Latest News wo man ja die Anzahl der Beiträge und die Sortierung einstellen kann) im Slide geöffnet werden? Der Titel soll angezeigt werden und bei klick auf den Titel soll sich der Beitrag öffnen. Im Prinzig so etwas wie der slider von regularlabs. Hier ist jedoch das Problem, dass man die Beiträge immer in den Tag SLIDE einsetzen muß. Das sollte eben automatisch passieren. Ggf. Menülink Kategorie: Liste und dann eben bei klick auf Titel Beitragsinhalt öffnen.

    Danke für's nachdenken!

    Hallo allerseits,


    kennt jemand ein plugin o.ä. mit dem ein joomla-Benutzer Beiträge aus fremden Seiten einbinden kann? Es soll quasi ähnlich wie bei facebook laufen. Man gibt die URL des Artikels aus irgendeinem Portal ein, bestätigt, und dann wird Artikelbild und die ersten 250 Zeichen (einstellbar) in die joomla-Seite mit Link zum tatsächlichen, vollständigen Beitrag (z.B, ZUM ARTIKEL) eingebunden.

    Danke für's nachdenken...

    Danke für die ausführliche Erläuterung. Es geht halt darum dem Besucher klar zu machen, dass auf den Seiten kein Remarketing eingesetzt wird sondern tatsächlich nur das Nutzerverhalten zwecks Verbesserung des Angebotes ausgewertet werden soll. Ist dann schade wenn mit einem Klick alles blockiert wird. Ich sehe mir das mit GDPR mal an.

    Schöne Feiertage wünsche ich allen Leserinnen und Lesern!

    Hallo,

    das nervende Thema beschäftigt mich immer wieder. Kickgdpr scheint ja wohl datenschutzkonform zu sein. Aber wie gebe ich hier dem Nutzer die Wahl welche Cookies er akzeptieren will? So wie ich das sehe geht nur Alles oder Nichts, aber es geht wohl auch anders siehe Bild hier gefunden

    Ist es möglich ein joomla-Modul in eine andere Seite einzubinden? Es soll also nur z.B. das News-Modul in einem fremden Internetauftritt abgebildet werden. Nur das Modul, ohne Header etc, als gesonderte URL.

    Wie könnte die Url dann aussehen: externe-domain.de/modulID=20

    Ich meine das schon mal in einem anderen Forum gefragt zu haben und es soll wohl auch möglich sein. Ich finde aber weder das Forum noch den Eintrag =O

    LG

    Das zweite wirkt fast so als ob kein Menüelement zu diesem Eintrag existiert.


    Hast du eine aktive htaccess?

    Ich habe ein Menüelement für diese Beiträge hinzugefügt und nun passt es. Verstehe aber die Logik nicht. Bitte um Info? Vielen Dank!

    Das ist richtig. Es existiert kein Menülink zu dem Beitrag. Ist das das Problem?

    Hier die .htaccess


    ##

    # @package Joomla

    # @copyright Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.

    # @license GNU General Public License version 2 or later; see LICENSE.txt

    ##


    ##

    # READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!

    #

    # The line just below this section: 'Options +FollowSymLinks' may cause problems

    # with some server configurations. It is required for use of mod_rewrite, but may already

    # be set by your server administrator in a way that disallows changing it in

    # your .htaccess file. If using it causes your server to error out, comment it out (add # to

    # beginning of line), reload your site in your browser and test your sef url's. If they work,

    # it has been set by your server administrator and you do not need it set here.

    ##


    ## No directory listings

    IndexIgnore *


    ## Can be commented out if causes errors, see notes above.

    Options +FollowSymlinks

    Options -Indexes


    <IfModule mod_headers.c>

    Header always set X-Content-Type-Options "nosniff"

    </IfModule>


    ## Mod_rewrite in use.


    RewriteEngine On


    ## Begin - Rewrite rules to block out some common exploits.

    # If you experience problems on your site block out the operations listed below

    # This attempts to block the most common type of exploit `attempts` to Joomla!

    #

    # Block out any script trying to base64_encode data within the URL.

    RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]

    # Block out any script that includes a <script> tag in URL.

    RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]

    # Block out any script trying to set a PHP GLOBALS variable via URL.

    RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]

    # Block out any script trying to modify a _REQUEST variable via URL.

    RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})

    # Return 403 Forbidden header and show the content of the root homepage

    RewriteRule .* index.php [F]

    #

    ## End - Rewrite rules to block out some common exploits.


    ## Begin - Custom redirects

    #

    # If you need to redirect some pages, or set a canonical non-www to

    # www redirect (or vice versa), place that code here. Ensure those

    # redirects use the correct RewriteRule syntax and the [R=301,L] flags.

    #

    ## End - Custom redirects


    ##

    # Uncomment following line if your webserver's URL

    # is not directly related to physical file paths.

    # Update Your Joomla! Directory (just / for root).

    ##


    # RewriteBase /


    ## Begin - Joomla! core SEF Section.

    #

    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    #

    # If the requested path and file is not /index.php and the request

    # has not already been internally rewritten to the index.php script

    RewriteCond %{REQUEST_URI} !^/index\.php

    # and the requested path and file doesn't directly match a physical file

    RewriteCond %{REQUEST_FILENAME} !-f

    # and the requested path and file doesn't directly match a physical folder

    RewriteCond %{REQUEST_FILENAME} !-d

    # internally rewrite the request to the index.php script

    RewriteRule .* index.php [L]

    #

    ## End - Joomla! core SEF Section.

    Hallo!


    Um die URL wunschgemäß darzustellen habe ich wie üblich in Beiträge/Optionen/Integration Routing auf Modern - IDs aus url entfernen auf ja gesetzt.


    Das hat aber nicht den gewünschten Effekt erzielt.


    Beispiel:
    URL vorher: xydomain.de/niedersachsen/18-markt/kundenmeinungen/28-glasklappe-von-progress-elektrogrill


    URL nachher: xydomain.de/niedersachsen?view=article&id=28:glasklappe-von-progress-elektrogrill&catid=18:kundenmeinungen


    SEO:

    Suchmaschinen-freundliche URL JA

    URL-Rewrite nutzen JA

    Dateiendung an URL anfügen NEIN

    Unicode Aliase JA

    Seitenname auch im Titel NEIN


    Hat jemand eine Idee woran das liegen könnte?


    Viele Grüße