Jump to content

Basil

Members
  • Posts

    49
  • Joined

  • Last visited

Everything posted by Basil

  1. great news! may i ask if we can download/buy? i have bought padloper before 1year just to support it never used in real project yet.
  2. Very good news! i am happy that i will use Padloper 2 & Processwire for my shop, i cant wait, sign me in for upgrade from old Padloper when you are ready.
  3. yes kongondo i realy need this! i believe this is what many customers need and is going to be the next big step! please let me know if you develop this module.
  4. thank you guys! first i want to tell you that i use processwire 2.4 version (because my server run on php 5.3) hi Macrura, no i dont use robots.txt and i just have enable this on htaccess RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] so it will redirect to www hi cstevensjr, i just use the original htaccess for version 2.4
  5. hi to all! i have this problem in the BING webmaster tools, my site is not indexed at all, (GOOGLE HAS MORE THAN 100 PAGES INDEXED) and the site works fine, the site is on 3+ years, when i check my site with BING BOT i get this errors as result in all pages i run the bot. HTTP/1.1 403 Forbidden Connection: Keep-Alive Date: Tue, 21 Apr 2015 01:22:03 GMT Keep-Alive: timeout=3, max=100 Content-Length: 312 Content-Type: text/html; charset=iso-8859-1 Content-Encoding: gzip Server: Apache Vary: Accept-Encoding <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>403 Forbidden</title> </head><body> <h1>Forbidden</h1> <p>You don't have permission to access /en/airport-transfers/ on this server.</p> <p>Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.</p> <hr> <address>Apache Server at www.mysite.com Port 80</address> </body></html> any idea what to check? i am realy lost.
  6. thank you BernhardBthat is exactly what i want! <?php $active = ' active'; // set active for first item foreach($page->images as $img) { ?> <div class="item<?= $active ?>"> <img src="<?php echo $img->url; ?>" /> <div class="container"> <div class="carousel-text"> <h2><?php echo $img->description; ?></h2> </div><!-- /carousel-text --> </div><!-- /container --> </div><!-- /item --> <?php $active = ''; // remove class "active" for following items } ?>
  7. hi to all members! i use processwire 2.4 (my server php is 5.3) i try to translate my home template but i cant get all the translatable fields in admin, for example in the folowing code i dont get the "Philosophy" word for translate, and this happens in the other words to and to all other templates <h4><?php echo __("Our"); ?> <span><?php echo __("Philosophy"); ?></span></h4> here is an image of the field not there any idea why this might happen, thank you!
  8. hi apeisa! first i want to say that i love processwire & now i am going to use it for my eshop thanks to your padloper!! can you please advise me how to implement to PadCart a sizes field (page fieldtype) so when you add a product to cart it adds also the size you have choose, the code i have in product template is $cart = $modules->get("PadCart"); $content .= "<br>Price: " . $cart->renderPriceAndCurrency($page->pad_price); $content .= "<br>In stock: " . $page->quantity; // my field size is a multi page field // this is what i need to get to display in cart and order if($page->size) { $content .= "<br>Size: <select>"; foreach($page->size as $size){ $content .= "<option>{$size->title}</option>"; } $content .= "</select><br>"; } $content .= $modules->get("PadRender")->addToCart(); $content .= $modules->get("PadRender")->editCart(); $checkout = $modules->get("PadCheckout"); $checkout->setPaymentModule("PaymentStripe"); $checkout->setInvoiceMode(true); // This means that actual payment phase will be skipped $checkout->setShippingModule("ShippingEmail"); // This means that all orders will use this specific shipping module sory to bother but i am trying to learn code.
  9. Apeisa this is great news!!! i cant wait to buy....
  10. Thank you apeisa... Cant wait to buy it!! when you have some demo let us now.
  11. thank you kongondo! i manage to solve it this way: <!-- Wrapper for slides --> <div class="carousel-inner"> <?php $first = $page->images->first(); ?> <div class="item active"> <img src="<?php echo $first->url; ?>" /> <div class="container"> <div class="carousel-text"> <h2><?php echo $first->description; ?></h2> </div><!-- /carousel-text --> </div><!-- /container --> </div><!-- /item --> <?php foreach($page->images->slice(1) as $img) { ?> <div class="item"> <img src="<?php echo $img->url; ?>" /> <div class="container"> <div class="carousel-text"> <h2><?php echo $img->description; ?></h2> </div><!-- /carousel-text --> </div><!-- /container --> </div><!-- /item --> <?php } ?> </div><!-- /carousel-inner --> i dont know a better way, but i wait and see..
  12. hi to Processwire LOVELY COMMUNITY! i have a question about how can i add a class to current viewable image from images field. my code is like this: <?php foreach($page->images as $img) { ?> <div class="item"> <img src="<?php echo $img->url; ?>" /> <div class="container"> <div class="carousel-text"> <h2><?php echo $img->description; ?></h2> </div><!-- /carousel-text --> </div><!-- /container --> </div><!-- /item --> <?php } ?> i need to add only for the current image to this div <div class="item"> the class of active, like this <div class="item active"> is there any way to make it happen? Thank you in advance!
  13. Hello i allso want to ask How's the new version of the shop going??? i am very interest of buy! thank you.
  14. hi to all proceswire!! i have a dificult time to add cloud-zoom http://www.starplugins.com/cloudzoom the code is like this: i change my post i find a easy way here is the code <div class="images"> <ul class="additional-images"> <?php foreach($page->images as $img){ ?> <li> <a href="<?php echo $img->url; ?>" title="Some fancy title" class='cloud-zoom-gallery zoom' rel="useZoom: 'zoom1', smallImage: '<?php echo $img->url; ?>' "> <img src="<?php echo $img->url; ?>" title="Some fancy title" alt="Some fancy title" /> </a> </li> <?php } ?> </ul> <div class="image"> <a href="<?php echo $img->url; ?>" class="cloud-zoom" id="zoom1" rel="position: 'inside' , showTitle: false, adjustX:-4, adjustY:-4"><img src="<?php echo $img->url; ?>" title="Awesome products name" alt="Awesome products name" /> </a> </div> </div> is working fine this way but the problem is that i want to display additional images div under image div <div class="images"> <div class="image"> <a href="<?php echo $img->url; ?>" class="cloud-zoom" id="zoom1" rel="position: 'inside' , showTitle: false, adjustX:-4, adjustY:-4"><img src="<?php echo $img->url; ?>" title="Awesome products name" alt="Awesome products name" /> </a> </div> <ul class="additional-images"> <?php foreach($page->images as $img){ ?> <li> <a href="<?php echo $img->url; ?>" title="Some fancy title" class='cloud-zoom-gallery zoom' rel="useZoom: 'zoom1', smallImage: '<?php echo $img->url; ?>' "> <img src="<?php echo $img->url; ?>" title="Some fancy title" alt="Some fancy title" /> </a> </li> <?php } ?> </ul> </div> like this if i dont click to additional image link it doesnot display the main image. thank you!
  15. thank you guys! and apeisa sory i mean 1000 sales! Macrura i think most of cases is similar, for booking site lets say the perfect example is what Ryan has create Villas of Distinction or VillaRental.com allso for catalog searching your creation Ohm Speakers is a good case. Anyway thank you and i love this forum!
  16. Hi! i am sure you already have this idea but i want to tell you my point of view! I love PROCESSWIRE but i am not good in programing, i used to use other cms but i cant think my self of going back to them, after i play a litle with processwire. my point is that if Ryan and other Programers from this forum give a litle or more time to wright a book for processwire, but in a way of complete tutorials of most common uses of websites, for example Real Estate website, a Travel Agency booking website, a Shoping Cart, a Buisness presantation site, a Portfolio site, a Blog, a Forun, i am sure you will think more cases! And all this after book is finished and the code tested you can post them to Site Profiles, imagine the new people that this site profiles with a book that explain in great details how they developed will come, one help the other and both help processwire to be the top cms for everybody. But the examples must be in very detaild and explaind in depth so a non programer like me can follow and allso give some useful common examples, this way you dont have to answer questions again and again. Now the benefits: 1) Lets say 1000 people i am sure it will be a lot more!! buy the book in first 20 days x 30 euros (wich i think is a good price) for the book in pdf profit: 30.000 euros lets say 3 people get involved 10.000 each!! and money comming with each sale, and with all good karma because you are helping others.. 2) for people like me the help to addapt processwire! 3) for processwire (imagine all the people who like it but dont find the time to search in forum, and read tutorials that come close but not so close.. i know book allso need time but in book you know at the end you have build what you want) 4) for the people involve in this book i belevie that it will help them to get more skills that already have Thank you very much and i hope it will come true soon!!
  17. thank you Wanze.. and Michael.. not working i cant see whats wrong //// IN HEAD I USE///// <style type="text/css"> #map-canvas { height: 100% } </style> <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=HERE IS MY KEY BUT I DELETE FOR SHOW &sensor=true"> </script> ////// IN BODY IUSE ////// <div id="map-canvas"> <script type="text/javascript"> function initialize() { var mapOptions = { center: new google.maps.LatLng(<?php echo $page->map->lat ?>, <?php echo $page->map->lng ?>), zoom: 8, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions); } google.maps.event.addDomListener(window, 'load', initialize); </script> </div>
  18. thank you for your help Michael. no iam sory is there but missed from copy paste here: <div class="span4"> <script type="text/javascript"> function initialize() { var mapOptions = { center: new google.maps.LatLng(<?php echo $page->map->address ?>, <?php echo $page->map->lat ?>, <?php echo $page->map->lng ?>,), zoom: 8, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions); } google.maps.event.addDomListener(window, 'load', initialize); </script> </div> i cant find wats wrong
  19. thank you Michael i read this but i am so confused that i dont know how to do it, what i try is this: // //ON THE HEADER I ADD:/// <style type="text/css"> html { height: 100% } body { height: 100%; margin: 0; padding: 0 } #map-canvas { height: 100% } </style> <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script> </head> //// ON THE BODY I ADD: ///// <div class="span4"> function initialize() { var mapOptions = { center: new google.maps.LatLng(<?php echo $page->map->address ?>, <?php echo $page->map->lat ?>, <?php echo $page->map->lng ?>,), zoom: 8, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions); } google.maps.event.addDomListener(window, 'load', initialize); </script> </div> but output is nothing, you see some mistake?
  20. hi forum!! i have a problem to output the map it works great in admin when i put the adress marker moves to corect position, but i cant view map in frontend, i use <?php echo $page->map; ?> but the output is the adress name, not the map. thank you!
  21. wonderful website!!! works great! congratulations..
  22. Basil

    Web Design Agency

    Hi onjegolders and thank you for your kind words... i hope to manage those fixes. And i really like your sites they are piece of art!!
×
×
  • Create New...