I'm looking for a simple module/code that allow me to manage advertisement.
I've tried many modules but I found just complex stuff and with non logical structure, I've also tried to edit some modules but the are too much work to do.
I'd like just to create custom block with an image field and a tracking system (impressions, click etc).
So the ad manager can just go to the page, click on the context link, see the impressions/click and he can upload new pic for the ad.
I mean something really easy and intuitive, I place the blocks around the site, the ad manager (website admin) upload manage blocks.
I cant find anything that works in this simple way, and I cant figure out how to write down some code for get this easy system work.
Any help?
I would suggest the module Simpleads. I'm using it on a site right for doing simple ad tracking like you described.
Here is a link to the module. http://drupal.org/project/simpleads
have you tried using this module http://drupal.org/project/ad , i guess this will help you
Related
I went through similar questions on SO but didn't get my answer. So I thought to put this together in a more simpler way here.
I have a website with url like :
http://domain.com/user/user-name [ here user-name is dynamic and changes for every user, pretty obvious. ] - This right now works perfectly fine.
Next :
I need to show pages as below for users in a url like :
http://domain.com/user/user-name/about
http://domain.com/user/user-name/contact
http://domain.com/user/user-name/posts
etc
FYI : I'm using ultimate member plugin to manage user profiles.
So I need to know how can I crate separate page for each of the above mentioned URL's custom to each of the section like about / contact / posts.
though I'm working with wordpress since quiet a time now but this problem makes me feel newbie to it. Please tell me step wise on how can I achieve this.
I've spent 2 days already working out various things.
Thanks.
Take a look at the plugin called "Pods". It implemented the "URL Regex" as you required.
https://wordpress.org/plugins/pods/
I need to locate the file that manages the main page of my online store developed with Magento (which would be the index.html). I just need to change a link, and I've used Firebug shows that the file i need to edit is "misitioweb.com" (the main page) but the document itself does not appear in the ftp. The initial page consists of a bunch of XML, and PHP's PHTML. If someone wants to see the address page is http://peluches-cel.com and only want to change the destination URL of the link "Peluche del mes". I have used the help of Magento to show "Help template route" and I downloaded the 4 files that are more likely to manage that area of the page, but I can not find the part where specify the destination URL of the link. I have always worked with HTML or PHP separately (I have little experience with PHP) and I find it very difficult to understand how Magento builds each website. If someone could give me a little hint on how to achieve change that link would you do me very happy, it took a long time trying it on my own and looking online but can not find how to do any guestbook or forum that explains how to work well with Magento, in my language, there are hardly any documentation on Magento, so I decided to try my luck in this forum and I've read on several pages that involves many professionals in the e-commerce. Thanks in advance to all who devote their time to read my question.
I don't really understand what you want.
But if you want to change the base URL, you can do that by accessing database via phpMyAdmin, find the table core_config_data and change the URL in the web/unsecure/base_url and web/secure/base_url to what you want.
Not the url of the page, but the url of a link. Try clicking on "Peluche del mes" and see what comes out, gives access to http://www.peluches-cel.com/peluche-del-mes, I want access to http://www.peluches-cel.com/oso-tiziano-2col-40cm directly. The problem is NOT EXISTS peluches-cel.com/oso-tiziano-2col-40cm page on FTP, to be done in PHP there are different functions that are responsible for creating it at the time of the request I need to change the link to "Peluche del mes", if you see with firebug or any other source code analyzer, the source code of the page you will see that line 146 is managed that link, but I can not directly access the code ¿do you understand me? through an ftp client no such file or html as php magento works with the model view controller, that's my problem. Thank you again.
I just finished my first Site Template on ThemeForest.
Now i searched for some tips to shared it to get the most purchased. Then i found some programmes which allow you to copy a full site from a web, e.g HTTrack
Now my question is: how can i prevent a copy request by a program like HTTrack?
Maybe i can manipulate something in my Demo-Files to confuse the program...
I found nothing in the web...
If you want to protect your intellectual property, add a (c) to it.
If you publish on the web, there nothing else you can do.
If you don't want others to copy your theme, don't publish it. And don't fall for stupid tricks like disabling the right mouse button. It only annoys people and will stop nobody.
One possible solution is to place only screenshots of your theme online, not the actual CSS/HTML, but if I were a potential buyer I wouldn't buy based on a screenshot. I would like to test it in the wild on different browsers/OS's.
I'm trying to make a page divided in 2 frames. One that shows an external page... a shop for example,and other(mine) that offers related content to what is being shown in the external page.
I've been searching how to know the URL of the frame, but it can't be done due to security reasons(XSS, clickjacking, etc).
But I know it has to be one way to know it. I recently read that some plugins like the facebook's, have the ability to know where the client is while he is navigating.
I hope that my intention is clear. Do you know if this is possible?
Without having the site's owner install some JS on their site, you will find it very hard to find a cross-browser way to do this. FB do have people include a script and this is how they are able to access information cross domain.
You may be able to create plugins to do this, however you will have to create one per browser.
Hey, I'm quite new to Drupal and am having some issues with implementing a node form on the front page of the site.
I want to have a really simple quick post form on the users front page when they are logged in, just a few fields and a submit button, no advanced options or anything.
Is there a really simple way to do this by placing some php in the front-page.tpl.php file?
I think what you are looking for is http://drupal.org/project/webformblock. (also requires the webform module)
Create a region on the front page and just put this block in it. You can set options in the block to only appear on the front page.
Or you could just invoke the block directly in the tpl.php file.
http://drupal.org/node/26502
Yes and no. This is not the drupal way of doing things- although you COULD make it work this way.
If you are looking for a simple solution, try a module like webform and put it on the front page. You can do this by either creating a page and setting it as the front page (under site information in the admin menu), or by creating a block, putting it in the 'content top' region of your theme, and in the configure block setting it only to display on (a special keyword that means frontpage).
Hope this helps!
Chris.
If your login goes to the /user page you can use the webformblock module (http://drupal.org/project/webformblock) to configure a Webform to only show up on the "user" page under site building > blocks > configure (next the the webform block). You can also check the option there to only show the block for authenticated users or another role of your choice.
You do not want to create a form without going through Drupal's form API, as you lose a lot of security features and there are many tools out there already that make it easy to generate and maintain forms through the Drupal interface. As the above answers suggest, webform is the Drupal way to create quick forms. And I think you will love the interface.
http://drupal.org/project/webform
Thanks for all your help guys. I tried the webformblock module and whilst it did fit the bill, it required me to create a new content type (maybe I wasn't using it right?).
In the end, after searching I found the Form Block module http://drupal.org/project/formblock which fitted my needs perfectly. It can be configured for existing content types really easily.