Search Results for 'Add Url'

Viewing 25 results - 1,576 through 1,600 (of 1,661 total)
  • Author
    Search Results

  • Shahjada
    Keymaster

    1) please give me your url to check, anyhow it could happen if /download-manager/cache/ dir is not writable.
    2) Prettify button will not work with wpdm v4, please use [download_link] tag only and image button add-on to replace button link label with a pretty download image
    3) hmm, not short-cut for that :(, anyhow you may remove other templates from template dir.


    nickm
    Member

    Hi,

    I downloaded Download Manager and the Directory add on.

    1. Thumbs are not showing up on my page template. I created a page template and couldn’t get the thumbnail to show. I the assigned the file the page template of Single Column, Image Top but no image appears (which suggests there might be an issue with the shortcode). The upload is a jpeg and I have added an image in ‘Additional Previews’. I couldn’t get thumb_url to work either.

    2. Prettify buttons with bootstrap isn’t working either. I insert [download_link btn btn-lage btn-success] and it returns this shortcode in the browser and not a pretty button. This is on link and detail.

    3. Default link and detail templates. How do I make my templates for link and page the default ones? I don’t want my client to have to keep remembering to select specific drop downs. Or maybe there is a global setting for this that I missed?

    Thanks in advance

    Nick
    MVG Media
    nickm@mvgmedia.com

    #10754

    xyzuser
    Member

    I tried version 4, could not get to work at all. The import from free plugin not functional. Doesn’t assign categories and so on. Numerous other bugs, too many to report. I changed to version 3, and had more issues. Though not so many as version 4. Now have reverted to free version after trying several hours without any success. Here are the issues so far:

    1. Bug in email signup

    If you enter invalid email address, this appears:

    {“error”:”Invalid Email Address!”,”downloadurl”:””}

    2. How to remove promo message from Twitter signup page when twitter user not signed in?:

    “Don’t miss any updates from A H M Shahnur Alam. Get your account today to stay up-to-date with your interests!”

    3. Not possible to use “icon only” format. So pro version incompatible with free one – I would need change all my page layouts.

    [download_link] cannot be used to create template because not a simple link, and therefore not workable into any of the templates

    4. Pages/popups keeps displaying the text “[wpdm_reviews]”.

    From a user point of view, I prefer the format of free plugin, it seems much more stable and user friendly. Neither version compatible with free plugin because can’t show icon only and link, and that means I would need to modify all of my pages/layouts for these complicated boxes to display properly, which I don’t want in any case.

    #10584

    Siti
    Member

    This hook : add_filter( ‘the_content’, ‘wpdm_downloadable’… is the problem, because it changes the content for all calls of the_content().
    Same problem with the links in the function wpdm_canonical_url (download-manager\modules\canonical_url.php)

    You must verify the post type
    if ( ‘wpdmpro’ == $post->post_type )
    {…

    #10318

    fma.witbe
    Member

    Hello,

    I would like the [icon] shortcode to link to the download URL (such as what the [download] shortcode does, but showing the icon).
    Is there a parameter I can add to this shortcode?
    Or where in the php files is it so I can change it?

    thanks
    fabien

    #10072

    Kschmalz
    Member

    Is it possible when the details button presses that you will take you to a page? I think of a URL address

    #10010

    Shahjada
    Keymaster

    if you want to make fields mandatory you will need wpdm form builder add-on. please send me your url where you using it, so that I can check the message

    #9947

    Shahjada
    Keymaster

    yes, you can apply their emails add package password, then mail then the package details page url, after they open the url. they will be asked for password and they will have to enter their email as password, and if their email exists in password list, they will be able to download the file.

    #9888

    Shahjada
    Keymaster

    please give me your archive page url to check the issue.
    Cache clearing issue is not available yet, but will be added with next update.

    #9631

    In reply to: Shortcodes and Icons


    Shahjada
    Keymaster

    you will need this add-on http://www.wpdownloadmanager.com/download/wpdm-directory-add-on/ . please give me and example url to see the icon

    #9483

    I’m trying the social lock functions, but i can’t get what i want. Probably is my fault because i can’t understand how the Facebook lock works :/

    I create a new package
    I set my link and page templates
    I set Facebook Lock

    In my download page, i can’t see any button for the “Like” 🙁

    The Page template is:

    <div class="row-fluid"> <div class="span5"> <img src="[thumb_url_600x0]" class="img-rounded"> <table class="dtable table"> <tbody> <tr><td>Total Files</td><td>[file_count]</td></tr> <tr><td>File Size</td><td>[file_size]</td></tr> <tr><td>Create Date</td><td>[create_date]</td></tr> <tr><td>Last Updated</td><td>[update_date]</td> </tr> </tbody></table> </div> <div class="span7"> [description] <br /> [file_list] <br> </div> </div>

    The link template is:

    <div class="media"> <a class="pull-left" href="[page_url]"> [icon] </a> <div class="media-body"> <h4 class="media-heading" style="padding-top: 0px;border:0px;margin: 0px;">[page_link]</h4> [download_link] <i style="margin: 2px 0 0 5px;opacity:0.5" class="icon icon-th-large"></i> [file_size] </div> </div>

    #9474

    twomuch
    Member

    Hi,
    The issue i complained at the beginning of this thread has not been fixed.
    It couldn’t have been fixed because like you said, i forgot to include a url.
    I have just sent the email again with my url.

    This issue has dragged for so long. I cant believe we are just addressing this issue since October 21st.
    Your support can be so frustrating for a paid plugin.

    Please help look into the issue i complained about from the beginning of this thread.

    Hi,
    The [wpdm_frontend] is acting up. When i click to upload files from pc, and i choose the file, it does not attach, But when i drag the file into the box, it attaches.
    When i click on image preview, it seems like the page is loading for ever. But additional preview works.

    What do i do to get these working?

    #9374

    Shahjada
    Keymaster

    ok now, problem was causing by fcebook plugin. We had to add following code to resolve facebook plugin issue:

    function wpdm_fb_ogurl($meta){
        $meta['og:url'] = wpdm_canonical_url($meta['og:url']);
        return $meta;
    }
    add_filter('fb_meta_tags','wpdm_fb_ogurl');
    
    #9288

    Shahjada
    Keymaster

    Please add following line at the end of /download-manager/modules/canonical-url.php to resolve open graph url:

    add_filter( 'the_permalink','wpdm_canonical_url' );

    I tried to add it, but your server was not allowing to edit/update file from wp-admin plugin editor.


    Shahjada
    Keymaster

    1) possible
    2) yes, please add following code at the end of functions.php:

    function wpmp_package_cats($vars){
            $categories = maybe_unserialize(get_option("_fm_categories"));
            $cats = @maybe_unserialize($package['category']);
            foreach($cats as $cat){
                  $clinks[] = "<a href='".wpdm_category_url($cat)."' rel="nofollow">$categories[$cat][title]</a>";
            }
            $vars['the_categories'] = implode(", ", $clinks);
    return $vars;
    }
    
    add_filter('wdm_before_fetch_template',"wpmp_package_cats");
    

    now you can use [the_categories] tag with link or page template to show categories associated with a package

    #9178

    I’m still having this trouble, and the support don’t answer anymore.

    I’m using WordPress SEO by Yoast and i’m still having that stupid canonical /wpdmpro/wpdmpro/ totally unuseful. Same canonical address is in all the og:url meta for Facebook

    #8967

    ryssoft
    Member

    Install premium package and test ‘licensing’.
    But it always returns ‘invalid’.
    curl is on, get license, add domain, edit ‘LICENSE_VALIDATOR’ are done.

    #8696

    Laurent
    Member

    Hi guys,

    I’ve just bought your plugin + WPDM Directory Add-on (within the All Ad-ons package) and I can’t get it work.

    This is what I did :
    1) In functions.php, I declared my widget zone.
    function mediatheque_widgets_init() {
    register_sidebar( array(
    'name' ► 'Mediatheque',
    'id' ► 'mediatheque',
    'before_widget' ► '',
    'after_widget' ► '',
    'before_title' ► '',
    'after_title' ► '',
    ) );
    }
    add_action( 'widgets_init', 'mediatheque_widgets_init' );

    2) In WP dashboard, I configured the widgets “WPDM Search”, ” WPDM Categories”, ” WPDM Packages by Category” then I used the proper shortcode in my page.

    3) I’ve configured the template’s .php file to display the widget.

    When viewing the page in my browser, the page displays the shortcodes, but does return the result of the shortcode.

    I don’t know if my made myself clear as English is not my mother tongue, and I can’t provide you any URL since we’re working offline, but for instance :

    I’ve used the shortcode [wpdm-search-result]. And instead of displaying the search results, it displays the shortcode.

    Any ideas what might have cause this issues? Did I do something wrong?

    Thanks,

    #8561

    Tekk
    Member

    If I change page template at the settings it is only reflected at a download page and not at the category page. How can I change template of the category page?

    Also how can I change the homepage of the plugin? It currently is a blank /wpdmpro/ page. How can I change URL and add content to it like shortcodes to downloads?

    #8403

    1. Is it possible to insert a direct link to download a package directly in to a post without having to find the ID or copy/paste the shortcut URL? For example, is there no option to add a WPDM button in to the WYSIWYG editor to quickly link packages created?

    2. Is it possible to HIDE specific packages from the wpdm-all-packages page I’ve created…

    #8342

    earthsite
    Member

    I purchased the Download Manager Pro, order 521138c9a56ab.

    I am able to login to the member area and click “Get License Key”, it gave me a key, but without asking for my domain.

    When I input that key on my website site, it says invalid key.

    When I login to the member area and go view domains, none are listed and there are no controls to add a domain.

    My website is http://www.RedwoodHill.com.
    CURL is active on my server.

    Upon review of forum posts (search “invalid key”), it seems that people are having trouble with this issue almost every day. This is a major issue with your system that needs to be fixed, especially for a commercial plugin.

    I also tried emailing support@wpdownloadmanager.com two weeks ago and never got a response.

    Thanks for your support

    #8262

    Shahjada
    Keymaster

    please give me your url to check

    #8065

    Shahjada
    Keymaster

    If you select a server dir for a package, when someone will download that package , it will pack all files inside that dir and start downloading. So anytime you update files in that dir, it will be automatically added with you package.

    for the 2nd css issue, give me the url please, so that I can check the css.

    #7796

    Paolo
    Member

    OPS sorry… css problem!

    .wpdm-pro .navbar ul li {overflow-y: visible; padding-left: 0px;}
    .wpdm-pro .navbar ul li:before { content: url(none);}
    .wpdm-pro .navbar-inverse .navbar-search .search-query {
    background-color: #FAFAFA !important;
    margin-top: 7px;}
    .wpdm-pro li { line-height: 0 !important;}
    .wpdm-pro .navbar-inverse .navbar-inner {
    background-color: #E7E7E7!important;
    border-color: #8A8A8A!important;}

    #7760

    Shahjada
    Keymaster

    don’t worry, we are still working on hotlink protection add-on and many other features are coming soon.

    @powerongrfx
    , please mail your login again to support@wpdownloadmanager.com, support team will check your issue. I heard they already resolved your speed control add-on issue once.

Viewing 25 results - 1,576 through 1,600 (of 1,661 total)