tires
Members-
Posts
255 -
Joined
-
Last visited
Everything posted by tires
-
I didn't change anything ... I am using a textarea with a textformatter "Make HTML Links" and "External Link Redirect". Is that a problem?
-
Hey! The module is not grabbing any youtube images since a few days/weeks (?). Is that only on my website? Example-Link, where the image grabbing doesn't work: https://www.youtube.com/watch?v=Uc5mfudMTKE
-
Thanks a lot! Processwire is really great!
-
Hi! I am searching for a method to show a field only if another field (here a checkbox) is filled (i.e. checked). So in my case: if i activate the checkbox "person" the fields "name" and "forename" should be displayed. Greets!
-
Great! Thank you! I will give it a try!
-
Hi! I am searching for a solution, to get editable watermarks on a bunch of images with a coloured bar, a text an and logo on it. The text should come from a text field so the user could change the watermark dynamically. Is there a module i could use or do you have other ideas how to realize this? Thanks!
-
@kongondo Great module!!! Just have one question or maybe feature request: Is there a way to add a marker with a text (textfield and a title) only and without linking to a page? I have a project where there is no page to link to and there should be only a few annotations on an image. Thanks!
-
Hi! Great Module. I just want to have a "remember me" checkbox in the login form. So the user can decide ... Ho can i add this?
-
Comments: email notifications to varios admin
tires replied to franciccio-ITALIANO's topic in Getting Started
May i use something like "group:editors" as well? -
Hi! I set this sessionExpireSeconds to 432000 in my confog.php $config->sessionExpireSeconds = 432000; I expected to be not automatically logged out for 5 days. But i have to log in the very next day or even earlier. Do i need to install another modul or did i made a mistake?
-
So, is there a way to not encode german umlauts? Ah! Thanks! It Works!
-
Thank you! I didn't know that ...
-
I added this code: <?php $wire->addHookAfter('SeoMaestro::renderMetatags', function (HookEvent $event) { $tags = $event->arguments(0); $group = $event->arguments(1); if ($group === null) { unset($tags['meta_generator']); $event->return = $tags; } }); to a file called ready.php that is placed in the /site/templates/ directory. Without any effect. The <meta name="generator" content="ProcessWire"> is still there ... Any ideas? Thanks an best regards!
-
Thanks! Can you give me a hint where i got to add this code?
-
Great Module! But i have two little issues. 1. I use the module on a german website were there are "umlaute" in the meta description. Although the whole page has UTF8 encoding, the meta description includes some "ä" etc. 2. I don't wan't to have the <meta name="generator" content="ProcessWire"> on this special website. Is there a way to remove this?
-
BTW. Is there a way to take the image title from the image field an show it under the image in the textarea field?
-
Works perfectly!!! Thanks a lot!!!
-
The code don't work for me. ? At least one of the images are still shown below the textarea.
-
No, it just some kind of blog. Some articles contains images which usually appears at the end of the article. But in some articles i want to add some of the images in the textareas. Those images just should not appear twice on the page. Is there another way to achive this?
-
Here is what i see (Firefox, Windows 10): Yes, that is what i meant. I am looking forward to this feature.
-
Thanks a lot!!! I will try it out soon! Wouldn`t that be a helpful add on to the textarea or the image module (for example "exclude images that are already rendered on page").
-
Like to see how the module is growing! There is a little mistake with the logo in the uikit theme. And the order of the elements i added to "Items displayed in the admin bar" is not adopting the right way.
-
-
Thank you! So there is no way to handle it with processwire and i have to use php? Did you tried this method and can you post a code snippet?
-
Hello! I got a template containing a textarea and an image field. The files from the image field are sometimes inserted into the textarea (CKEditor). If that is the case i dont want to show (output) them again. If not i want to show (output) them below the textarea. I there a way to check, if an image is already outputted on the page?