Forum Replies Created

Viewing 15 replies - 16 through 30 (of 36 total)
  • Thread Starter Vrefr

    (@vrefr)

    Hi Radiok!? Guess what I found out ??
    This hack that you managed to do works in Chrome and Mozilla, but does not work in IE 8 … ?? Maybe it is worth trying like I proposed with lables?

    Thread Starter Vrefr

    (@vrefr)

    naijaping?

    Thread Starter Vrefr

    (@vrefr)

    Hi naijaping.
    didn’t quite understand “add the ulr space in page links to”… where should I add the plugin URL? And what plugin URL do you mean? Smth like:
    wp-content/plugins/register-plus-redux/register-plus-redux.php ?? or?

    2 moshoodo123: Actually I don’t need to redirect… there will b eno link to original registration page, as I will have it inside of other page.

    That’s beacause you switched on the verification link function.
    When new user registers – they get verification link to their emails. Until they click it (verify) they are in fact not registered. And temporary name starts with unverified_. Check if login is OK after user clicks verification link in his\her email.

    Thad?
    Concerning the link to somewhere else from the main picture.
    Isn’t it possible to write there a JS function than will be called from onClick event and lead to somewhere else?

    I also need this solution, as my gallery is 350×350 pixels only and I need to zoom the chosen image to its full size. Of course something like lightbox would be perfect, but I read you switched it off.

    Would appreciate your help with any kind of solution.
    Thanks

    Thread Starter Vrefr

    (@vrefr)

    On twenty ten I lost all my custom taxonomies – of course – as I did written them in functions of child theme ??
    But when I turned back to to my theme I needed to recheck all checkboxes in widget area to get widget working again – and oh miracle ?? Everyhting works.
    So the desicion is I believe – after you add new taxonomy you need to reactivate you theme again or I also think that if you delete widget and adds new with new taxonomies – it should work!
    Thanks for advise, however everything is OK with the theme it helped me ??

    Thread Starter Vrefr

    (@vrefr)

    Hi Scribu,
    did you have a chance to look at it and find the issue?

    Thread Starter Vrefr

    (@vrefr)

    What do you mean by you don’t get the approprate create account page?
    It works fine with me – I register new user and it redorects me to the account profile page.
    What do you get after you click “register” button?
    What version of WP do you use?
    What version of plugin do you use?

    Thread Starter Vrefr

    (@vrefr)

    Hi Scribu, here it is:

    object(stdClass)#170 (14) {
      ["hierarchical"]=>
      bool(true)
      ["update_count_callback"]=>
      string(0) ""
      ["rewrite"]=>
      array(3) {
        ["slug"]=>
        string(7) "smoking"
        ["with_front"]=>
        bool(true)
        [0]=>
        string(0) ""
      }
      ["query_var"]=>
      string(7) "smoking"
      ["public"]=>
      bool(true)
      ["show_ui"]=>
      bool(true)
      ["show_tagcloud"]=>
      bool(true)
      ["_builtin"]=>
      bool(false)
      ["labels"]=>
      object(stdClass)#169 (14) {
        ["name"]=>
        string(21) "Для курящих"
        ["singular_name"]=>
        string(21) "Для курящих"
        ["search_items"]=>
        string(23) "Поиск рубрик"
        ["popular_items"]=>
        NULL
        ["all_items"]=>
        string(21) "Все рубрики"
        ["parent_item"]=>
        string(39) "Родительская рубрика"
        ["parent_item_colon"]=>
        string(40) "Родительская рубрика:"
        ["edit_item"]=>
        string(31) "Изменить рубрику"
        ["update_item"]=>
        string(31) "Обновить рубрику"
        ["add_new_item"]=>
        string(42) "Добавить новую рубрику"
        ["new_item_name"]=>
        string(42) "Название новой рубрики"
        ["separate_items_with_commas"]=>
        NULL
        ["add_or_remove_items"]=>
        NULL
        ["choose_from_most_used"]=>
        NULL
      }
      ["show_in_nav_menus"]=>
      bool(true)
      ["label"]=>
      string(21) "Для курящих"
      ["cap"]=>
      object(stdClass)#171 (4) {
        ["manage_terms"]=>
        string(17) "manage_categories"
        ["edit_terms"]=>
        string(17) "manage_categories"
        ["delete_terms"]=>
        string(17) "manage_categories"
        ["assign_terms"]=>
        string(10) "edit_posts"
      }
      ["name"]=>
      string(7) "smoking"
      ["object_type"]=>
      array(1) {
        [0]=>
        string(4) "post"
      }
    }

    In case you need a translation:
    “Все рубрики” – all categories
    “Родительская рубрика” – parent category
    “Изменить рубрику” – change category
    “Обновить рубрику” – refresh category
    “Добавить новую рубрику” – add new category
    “Название новой рубрики” – name of new category

    Thread Starter Vrefr

    (@vrefr)

    If there is no solution in the plugin, I found one not maybe the very correct but working.
    You can create text field with id for example “authoremail” within the plugin and pass registered user email to it on window onload. Smth like:

    <script type="text/javascript">
    <?php global $current_user;
          	get_currentuserinfo();
    	$useremail=$current_user->user_email;
    ?>
    
    window.onload = function() {
    var authoremail = document.getElementById("authoremail");
    authoremail.value = "<?php echo $useremail; ?>";
    }
    </script>

    Thread Starter Vrefr

    (@vrefr)

    Hi there again, now it works with “don’t sanitize” checked.

    But I saw one more thing that is not critical, but still might be an issue.
    If I make the custom field name in Russian, all IDis and class names for these fields are also in russian, which I believe might be a trouble in some browsers as they also might not recognize it.

    In any case the solution I see is to add additional field in plugin settings. I’ll try to describe what I mean.
    Now you have for custom fields:

    Name Type Options Profile Registration Require Actions

    And I would add Label (what visitors see).
    So that it would be the following:

    Label Name Type Options Profile Registration Require Actions

    Where LABEL is only shown in HTML on the registration page and is not sent in form to the server. So it doesn’t matter what language it would be written.
    And the NAME – is the name that should be in Latin letters and is not visible to the visitor. In fact it would give the following result in HTML:

    <p id='NAME-p'><label id='NAME-label'>*LABEL<br /><input type='text' name='NAME' id='NAME' class='input' value='' size='25' tabindex='22' /></label></p>

    So the LABEL will appear only for visitors and not for the form action sent to server – thus no character problem appears.

    What do you think? ??

    Thanks,
    and my belated wishes to the NY ??

    Thread Starter Vrefr

    (@vrefr)

    Thanks

    Thread Starter Vrefr

    (@vrefr)

    I believe something like $post_status should be used.
    But I’m not sure where to modify it? or is there a possibility to do it without hacking the code of plugin?

    Same error:
    Warning: move_uploaded_file(/public_html/wp-content/uploads/tdomf/tmp/1/User1/5.jpg) [function.move-uploaded-file]: failed to open stream: Permission denied in /public_html/wp-content/plugins/tdo-mini-forms/tdomf-upload-inline.php on line 191

    Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move ‘/tmp/phptkz9t7’ to ‘/public_html/wp-content/uploads/tdomf/tmp/1/User1/5.jpg’ in /home/easyflat/public_html/wp-content/plugins/tdo-mini-forms/tdomf-upload-inline.php on line 191
    Could not move uploaded file flat5.jpg to storage area!

    What’s the most interesting, when user is new – it creates the folder in tmp and uploads file. But when the same user comes back and loads pic again- this error happens.

    Thread Starter Vrefr

    (@vrefr)

    Hi there, Radiok, how’s success? Did you manage to solve it?

Viewing 15 replies - 16 through 30 (of 36 total)