Jump to content

willprobr

Rookie
  • Posts

    21
  • Joined

  • Last visited

About willprobr

  • Birthday 07/26/1985

Profile Information

  • Language
    Portugese
  • Software
    IPS4
  • Version
    4.3.4

Contact Methods

Recent Profile Visitors

1,066 profile views

willprobr's Achievements

Rookie

Rookie (2/14)

  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

4

Reputation

  1. hello guys, I edited the quick search in search.php but I can't make the search work with both Tags and Titles, only one or the other, in case I put 'q' or 'tags' but I wanted to make it work with both together does anyone know how to do this? thanks
  2. Hello guys, I'm trying to remove the required field that is red in the text box label of the standard editor, but I can only remove all fields instead of just him, does anyone know how to remove only that field? Thanks in advance.
  3. none of these codes worked for me, only one that I wrote myself is as follows, for version 4.3.6 insert in custom.css div#acpNewVersion { display: none; }
  4. Hello guys, sorry if I already have a topic like this, but I could not find, in case I wanted to learn how to create Apps, is there any guide or explanation for me to study and create new applications? I once found one called Hello World, but I don't think so anymore, I wish I could create new ones and help people.
  5. very nice man, thanks a lot, work perfect.
  6. hello guys, how do i remove copyright from this theme "IPS Gradient Theme" thanks for attention.
  7. Also check if you have a file named constants.php in the root, it also causes problems if it is not configured correctly.
  8. Version 7.1.3

    3 downloads

    YellowPencil is a WordPress CSS style editor plugin which allow you edit the website design in real-time. The plugin lets you customize any theme. Click on an element and start visual customization. Adjust colors, fonts, sizes, positions and a lot more. Take control of your website with more than 50 styles properties. YellowPencil provides everything that you need for customizing your site design. The plugin comes with advanced features like visual resizing, drag & drop, measuring tool as well as a ton resources that background patterns, sweet fonts, and trend color palettes also it has an advanced responsive tool which allows you customize your site for any screen size. Visual Animation Generator Add animations to your website. Use 50 ready-to-use animations or create new animations with Animation Generator Tool which recording your moves as an animation. Live CSS Editor YellowPencil developed for both beginners and advanced users. No programming knowledge required but there is still a good CSS Editor for those who would like to coding! You can code with live CSS editor and interfere generated CSS rules. How does this work? The plugin creates CSS style codes like a professional web developer in the back while you are playing with colors. Personalize your website design, leave a different impression on the visitors!
  9. I think it's just go in REST API as in the image, see: after creating new, the following options will appear: I hope it helps you.
  10. I believe only with two installations and use the REST API to connect the two.
  11. After a few hours trying, I was able to solve this problem as follows: Edit file register.php in /applications/core/modules/front/system/register.php Select from the row 386 to 408. \IPS\Member::loggedIn()->language()->words[ "reg_agreed_terms" ] = sprintf( \IPS\Member::loggedIn()->language()->get("reg_agreed_terms"), \IPS\Http\Url::internal( 'app=core&module=system&controller=terms', 'front', 'terms', array(), \IPS\Http\Url::PROTOCOL_RELATIVE ) ); /* Build the appropriate links for registration terms & privacy policy */ if ( \IPS\Settings::i()->privacy_type == "internal" ) { \IPS\Member::loggedIn()->language()->words[ "reg_agreed_terms" ] .= sprintf( \IPS\Member::loggedIn()->language()->get("reg_privacy_link"), \IPS\Http\Url::internal( 'app=core&module=system&controller=privacy', 'front', 'privacy', array(), \IPS\Http\Url::PROTOCOL_RELATIVE ), 'data-ipsDialog data-ipsDialog-size="wide" data-ipsDialog-title="' . \IPS\Member::loggedIn()->language()->get("privacy") . '"' ); } else if ( \IPS\Settings::i()->privacy_type == "external" ) { \IPS\Member::loggedIn()->language()->words[ "reg_agreed_terms" ] .= sprintf( \IPS\Member::loggedIn()->language()->get("reg_privacy_link"), \IPS\Http\Url::external( \IPS\Settings::i()->privacy_link ), 'target="_blank"' ); } $form->add( new \IPS\Helpers\Form\Checkbox( 'reg_agreed_terms', NULL, TRUE, array(), function( $val ) { if ( !$val ) { throw new \InvalidArgumentException('reg_not_agreed_terms'); } } ) ); \IPS\Output::i()->jsFiles = array_merge( \IPS\Output::i()->jsFiles, \IPS\Output::i()->js( 'front_system.js', 'core', 'front' ), \IPS\Output::i()->js( 'front_templates.js', 'core', 'front' ) ); return $form; and replace with: \IPS\Member::loggedIn()->language()->words[ "reg_agreed_terms" ] = sprintf( ); /* Build the appropriate links for registration terms & privacy policy */ if ( \IPS\Settings::i()->privacy_type == "internal" ) { \IPS\Member::loggedIn()->language()->words[ "reg_agreed_terms" ] .= sprintf( ); } else if ( \IPS\Settings::i()->privacy_type == "external" ) { \IPS\Member::loggedIn()->language()->words[ "reg_agreed_terms" ] .= sprintf( ); } $form->add( new \IPS\Helpers\Form\Checkbox( 'reg_admin_mails', \IPS\Settings::i()->updates_consent_default == 'enabled' ? TRUE : FALSE, FALSE ) ); \IPS\Output::i()->jsFiles = array_merge( \IPS\Output::i()->jsFiles, \IPS\Output::i()->js( 'front_system.js', 'core', 'front' ), \IPS\Output::i()->js( 'front_templates.js', 'core', 'front' ) ); return $form; I hope this can help others who have doubts about it, that's it guys, see you next time.
  12. I need to remove this option from the new user registry, but I have nowhere to find the option. Thanks.
  13. I would like to know if there is a way to block the access of a second account when one is already logged in, I know it has google authenticator, but it blocks detecting two different Ips ?, I wait and thank you.
×
×
  • Create New...