Jump to content

Marcel Epp

Members
  • Posts

    86
  • Joined

  • Last visited

Everything posted by Marcel Epp

  1. Hi, i'm trying to put the jquery filer modul in a processwire site. http://filer.grandesign.md/ Has anyone done something similar? I get stuck with the upload. It says sucsess but the files won't be uploaded.
  2. In the field blog_comments is a section where i can put my date. It says that this is the output for my comments. I can use date or srftime. I thought strftime makes a language change. But everything i put in will not be regognized.
  3. The Processwire Version is 2.7.0. I have a folder MarkupBlog and a folder called ProcessBlog. There is no folder .Processblog. I have show hidden files on. I already changed the entries in the input tab. The format is changeing. But the month stays in english.
  4. Hi, i have still some things that i needed to change. Maybe someone knows the answers. 1. After i installed the modul upgrade Processwire says that i have more then one of this modules installed and that i have to choose. Is this normal? 2. It is possible to add a new entry to the shortcut menu (backend) in Processwire? Blog Category and Blog Tag are already there. How can i add for example Blog Post? 3. In the Comments section the date is still in english. I changed the date value in blog_date field into german am %A, den %d.%m.%Y I tried the same in the field blog_comments. But this doesn't work.
  5. It's working now! THANK YOU very much!!! This blog module is really awesome!!!
  6. Hi kongondo, that's amazing! Thank you for your help. I tried it and it worked when i copy your code. But i already hav an array for the defaults options. To translate "more" to "mehr" for example. $content .= $blog->renderPosts("limit=5", true, $defaultOptions); How can i put the second array behind the $defaultOptions array? I tried google. Is array_merge an option?
  7. Thank you very much! This helps me a lot. Another question i have is, can i change classes the same way? I searched this topic but didn't find an answer. For example: In my blog overview there is <ul class="MarkupPagerNav"> <li class="MarkupPagerNavOn MarkupPagerNavFirst MarkupPagerNavFirstNum"><a href="/blog/"><span>1</span></a></li> <li class="MarkupPagerNavLastNum"><a href="/blog/page2"><span>2</span></a></li> <li class="MarkupPagerNavNext MarkupPagerNavLast"><a href="/blog/page2"><span>Vorwärts</span></a></li> </ul> how can i give "MarkupPagerNav" a second class like "pagination". I'm working with Zurb's Foundation Framework.
  8. Ok. Get it to work I put it in my blog-post.php and changed something looks now like this: $options = array( 'comments_post_text' => 'My Text for Post-a-Comment', 'comments_list_empty' => 'Nobody has dared to comment on this article...yet', 'comments_empty' => 'Are you sure you want to be the first to comment?' ); $renderComments = $blogConfigs['commentsUse'] == 1 ? $blog->renderComments($page->blog_comments, 0, $options) : '';
  9. Hi kongondo, thanks for your reply. But i need a more help to understand. Where did i have to put your example? I put this in the blog-post.php template. I don't have to change it in the MarkupBlog.module file?
  10. Hi, how can i change the language in the frontend? For example "Post a comment". I can't find any entries.
  11. Hi, has anyone created a jquery file upload? I would put this in my template: http://tutorialzine.com/2013/05/mini-ajax-file-upload-form/ The problem is that i couldn't upload any files. The forum says that choose a upload folder is not possible. I used the jquery upload because it has a progress bar. I would use anything else, if there is something better.
  12. Hi, i'm building a little statistic site. I get a dashboard to run. How can i put the fields in my frontend template to change the password?
  13. This was new to me. Thank you very much!
  14. Get it to work only with css. Thank you for your links. How can i change the placeholders inside the textfields? It says username, password and login. How could i translate that?
  15. Hi, need some help. How can i theme the login button through css? How can i give the input field another class?
  16. Hi, can i build a form with an upload field right in processwire? I would upload files and then send it through email? A progress bar that shows how long the upload take would be nice. Something like this with email support: https://blueimp.github.io/jQuery-File-Upload/ Has someone done this before? Or can i achieve this with the commercial form builder? Or should i use a framework for that like angularjs?
  17. Hi, is there any progress with post 110? I get the same error, when i using menubuiler with language support activated.
  18. wow! thanks for your help!!! It is working now
  19. Thanks for your answer! Didn't get it to work I gave Menubuilder a second change. Works now. But i have to disable the language module....
  20. Hi, i need some help with the navigation menu. How can i add a link to an anchor? I used this to display my sites. The menu renders fine. After the second entry i would link to screen2. How can i do that? <?php include("./head.php"); ?> <body> <section id="screen1">text <nav> <ul> <?php // top navigation consists of homepage and its visible children $homepage = $pages->get('/'); $children = $homepage->children(); // make 'home' the first item in the navigation $children->prepend($homepage); // render an <li> for each top navigation item foreach($children as $child) { if($child->id == $page->rootParent->id) { // this $child page is currently being viewed (or one of it's children/descendents) // so we highlight it as the current page in the navigation echo "<li class='current'><a href='$child->url'>$child->title</a></li>"; } else { echo "<li><a href='$child->url'>$child->title</a></li>";}} // output an "Edit" link if this page happens to be editable by the current user if($page->editable()) { echo "<li class='edit'><a href='$page->editUrl'>Seite bearbeiten</a></li>"; }?> </ul> </nav> </section> <section id="screen2"></section> <?php include("./footer.php"); ?>
  21. Hi itsberni, thank you for answer. It worked except for the date field. For now it's perfect!
  22. Hello, i'm new to processwire, but i really like it. This add on is a great enhancement. How can i change the text in a submitted e-mail? Example fullName in Absender thanks
×
×
  • Create New...