This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Forum Replies Created

Viewing 15 posts - 18,391 through 18,405 (of 18,407 total)
  • Author
    Posts
  • in reply to: BUG WITH MY POP UP CONNEXION WINDOW #498
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Ok, I see the site is online again.
    Have you added the shortcode like this:

    <?php echo do_shortcode('[wpdreams_ajaxsearchpro id=1]'); ?>

    Is it showing the search? Is the search working?

    in reply to: uploading images error #497
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I’m getting a similar issue on wordpress 3.5.2, are you using this version? If so, then I will look into it and send you a fixed version, but first please use the “Open Support Ticket” on the right top side of the screen so you verify your product and open another topic. (you can copy this text there, what you just wrote) Then I will be able to upload files, that are only visible for you. (I dont want guests to download the product for free)
    I will look into this first thing tomorrow.

    in reply to: Plugin conflict with Scripts to Footer #488
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    I can see the problem now. The solution would be if you add the following line to the header.php file in your template file:
    <script src="://testing.quehaypahacer.com/wp-content/plugins/ajax-search-pro/js/jquery.ajaxsearchpro.min.js"></script>

    As for the box that is appearing, it’s coming from the template css files, but there is a simple solution for that. Add these lines also to the header.php file:`
    .probox .loading {
    border: none !important;
    opacity: 1 !important;
    padding: 0 !important;
    position: static !important;
    z-index: 10100;
    }`

    in reply to: BUG WITH MY POP UP CONNEXION WINDOW #483
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi! Sorry for the delay, it took me a while to backup all the information. Anyways I’m checking the url you gave me, but it appears to be offline. Am I correct?

    in reply to: BUG WITH MY POP UP CONNEXION WINDOW #467
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hello!

    I just logged in, but I cannot see the search in the header.php, you may have removed it in the meantime.
    Have you tried it in other files or in a widget?

    in reply to: HELP #440
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    It’s only possible by deactivating all the plugins via the database. Log in to your phpmyadmin or some equivalent database client and run the following query:
    UPDATE wp_options SET option_value = "" WHERE option_name = "active_plugins";

    Let me know how it goes!
    Also I’m not sure if it is only the search responsible entirely for white screen. Never had such issue before.
    After deactivating all plugins, try to enable only the search, and if there is no white screen, then perhaps there is a conflict between plugins.

    in reply to: Category exclude doesnt work #439
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    To search only in one category you must exclude all other categories. To do this, you need to:

    I just tested this on the demo site and it worked (the screenshot were taken there).
    Let me know how it goes!

    in reply to: Permissions #434
    Ernest MarcinkoErnest Marcinko
    Keymaster

    I think, you are able to see the attachement now.

    in reply to: Permissions #432
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Oh, it’s good to know that, this ticket system is brand new 🙂 I will fix that as well in minutes.

    in reply to: Permissions #431
    Ernest MarcinkoErnest Marcinko
    Keymaster

    No problem at all! Yes of course they will!

    in reply to: Permissions #427
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hello!

    It was something wrong with the file writing php function “file_put_contents”. I have managed to fix the issue, now it should work fine. I’ve added a picture into the “hello world” post and enabled post search, and the picture is in the result list, so it’s working fine.
    I’m attaching the modified version, in case you need to reinstall the search.

    in reply to: Permissions #425
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!

    Are you sure, that the server name is correct? I get a server not found error in my browser if I type in vandegelder.com

    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hello!

    Thank you for notifying me for some of the bugs.

    The wpdreams-aspjquery and other scripts have included custom built jquery plugins. I had too many issues with other free and home-made plugins, because lot of these were loading jquery after other plugins already loaded it. It resulted in a serious issue (it wipes out all the loaded jquery extensions), there is no other solution for this. I have consulted with other top plugin authors, and nobody found a better way of solving all the compatibility issues. Since I use this method, nobody ever complaind about any compatibility problems. Because a custom built jquery is loaded in a different scope, there is no need of the jquery noconflict.

    I will look into the other issues you mentioned though.

    Thanks for the response!

    in reply to: Question in context with qTranslate #419
    Ernest MarcinkoErnest Marcinko
    Keymaster

    I thinks that is not possible to achieve, since qtranslate strings are stored at the same place as the normal strings.

    Unfortunately I don’t have time now for paid jobs, but I will take a look at this as soon as I can.

    in reply to: Question in context with qTranslate #395
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi!
    So I guess you only need to add the proper filter for the link and the description. The title is working, because it’s using the get_the_title($pageposts[$k]->id); function, and I guess qtranslate already applies a filter on the get_the_title funtion.
    What you need, is to find the proper qtranslate filter for the content and the url. What I have found out from the qtranslate source code, is this:

    • qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage -> content filter
    • qtrans_convertURL -> url filter

    Okay, now all you need to do is add these filters to the search source code:

    • Open up the ajax-search-pro/search.php
    • go to line 269 and make a new line
    • add the following lines:
      `apply_filters(‘qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage’, $_content);
      apply_filters(‘qtrans_convertURL’, $pageposts[$k]->link);`

    If the permalink is still not good, then try to modify the second line to: apply_filters(‘the_permalink’, $pageposts[$k]->link);
    Let me know how it goes!

Viewing 15 posts - 18,391 through 18,405 (of 18,407 total)