ActiveDen

Posts by bfintal

248 posts
  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Philippines
  • Referred between 10 and 49 users
bfintal says

I read this thread and got confused with the whole mandatory thing. I found out the what was what after reading the succeeding pages.

As with the others I have a few issues regarding it when it comes to edits being wiped, etc… although I think this has potential.

Just to share I do theme updates this way:

  1. User see’s an admin notification that there is an update to the theme if they’re currently using it. I have an XML file online that contains the latest theme version and gets checked by the theme every 15 minutes.
  2. Buyers just re-download it again and install the new version. But since it’s a new version it gets installed in a different folder to prevent file overwriting. e.g. themename_v1.0 and themename_v1.1. All the previous theme configurations get carried over to the new installed version, and they can just switch to the old version if something goes wrong.

Oh and I encountered a fatal error when I tried to implement the library. The Envato_Protected_API class gets redefined and throws an error. The cause would be is that I had the Toolkit plugin installed and I also implemented the library. A fix would be editing line 12 of class-envato-protected-api.php to:

if (!class_exists('Envato_Protected_API')) include_once( 'class-envato-protected-api.php' );

EDIT : sorry got confused, I removed some stuff I said because I thought you’ll need to use both the plugin and library. lol. I just realized those are 2 different things.

25 days ago in thread Important WP Author Announcement: Envato WordPress Toolkit
248 posts
  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Philippines
  • Referred between 10 and 49 users
bfintal says

Hi all,

I’ve been having trouble with white spaces and typography on my wp theme. I need another person to look at it and give suggestions. Any help would be appreciated.

Theme is here: http://themes.euclid.gambit.ph

3 months ago in thread Need feedback on white space & typography
248 posts
  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Philippines
  • Referred between 10 and 49 users
bfintal says

Cool! Just for reference, here’s my forum where I got it working: http://support.gambit.ph/entry/register

3 months ago via ThemeForest | in thread Setup Vanilla Forums With Envato API Purchase Verification
248 posts
  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Philippines
  • Referred between 10 and 49 users
bfintal says

I know this is an old thread, but I’m currently making my own support forum and the code posted earlier in the thread doesn’t work anymore with Vanilla’s current version. Using the original code as an inspiration, I made a few changes and it now works. Woot!

First off, I removed the new registration method and stuck with the basic (aka. recaptcha) registration method instead and modified the core scripts for that one.

Here’re the changes I made:

1. In the script applications/dashboard/controllers/class.entrycontroller.php, modify the private function RegisterCaptcha.. add this code right after the first IF statement:

$this->InvitationCode = $this->Form->GetValue('InvitationCode');
$verify = $this->verifyPurchasecode($this->InvitationCode);
if(!$verify['success']){
    $this->UserModel->Validation->AddValidationResult('InvitationCode', T('The provided purchase code is invalid.'));
}

2. Append this function to the end of the entry controller class (same file as above):

    private function verifyPurchasecode($purchasecode) {
        $username = 'ENVATO_USERNAME'; // authors username
        $api_key = 'ENVATO_API_KEY'; // api key from my account area
        $url = "http://marketplace.envato.com/api/edge/$username/$api_key/verify-purchase:$purchasecode.json";
        $ch = curl_init($url);
        curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
        $json_res = curl_exec($ch);
        $data = json_decode($json_res,true);
        if(!empty($data['verify-purchase'])){
            $data['verify-purchase']['success'] = true;
        }else{
            $data['verify-purchase']['success'] = false;
        }
        return $data['verify-purchase'];
   }

3. Edit the registration view script (or create a new theme then create a registration view script there): applications/dashboard/views/entry/registercaptcha.php and add the necessary input in the form:

      <li>
        <?php
            echo $this->Form->Label('Purchase Code', 'InvitationCode');
            echo $this->Form->TextBox('InvitationCode', array('value' => $this->InvitationCode));
        ?>
      </li>

This works for me in version 2.0.18.2

You’ll have to tailor the registration fields to what you want afterwards :)

3 months ago via ThemeForest | in thread Setup Vanilla Forums With Envato API Purchase Verification
248 posts
  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Philippines
  • Referred between 10 and 49 users
bfintal says

Cool! I would like the right arrow to be taller though (I’m assuming that was for a slide-in menu).. or even the text menu instead of an arrow? I’m also assuming that there would also be a nice gallary of thumbnails included

6 months ago in thread New Band Template Need some feedback
248 posts
  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Philippines
  • Referred between 10 and 49 users
bfintal says
louiejie said
Hi,

Thanks bfintal! I will go over and check it and make some changes the entire design. btw! You are a Filipino right?

Thanks, :)

Yup!

6 months ago in thread Feedback before I code
248 posts
  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Philippines
  • Referred between 10 and 49 users
bfintal says

Hi,

Check the thread I created regarding a thorough review: http://themeforest.net/forums/thread/i-will-review-your-designs/54901

To be honest, the design is simple, but it’s be too simple for me.. I’d prefer purchasing your other themes over this one.

But regarding this design, my main concern is the headers. For some reason the first set of headers (“Responsive Layout” row) looks good, but the rest are not too appealing.. maybe it’s the size, or the font.

My second major concern is the visual hierarchy. For example, the blog title “Learn more responsive design” should be a smaller header since it’s a blog title; but currently it’s the same size as the excerpt text below it. Another example is the copyright text, I feel that it should be smaller.

6 months ago in thread Feedback before I code
248 posts
  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Philippines
  • Referred between 10 and 49 users
bfintal says

Hey guys! I plan to create a review site in the future. I plan to solve the problem of getting fast design feedback since sometimes it is hard to get peer reviews from forums and other free feedback sites. Hopefully in a few months i can charge for reviews or maybe something more.

So to start things off, i will (to my fullest capabilities) try and provide free detailed reviews of anyone’s theme or design. Send over an image / screenshot of your design over from my profile. In return for the feedback, i hope it will be okay for your design and it’s review to be posted in my future site. I will send you back a review containing feedback and suggestions with arrows and boxes and stuff.

It’s always good to have another set of eyes for our designs :)

(forum gods, i hope this type of post is okay with you guys)

6 months ago in thread I will review your designs
248 posts
  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Philippines
  • Referred between 10 and 49 users
bfintal says

.. and still a rejection.

There’s a lot of design issues: shadow overuse, typography inconsistencies and honestly the homepage looks subpar.
6 months ago in thread WP Theme Rejection, Need Help
248 posts
  • Has been a member for 2-3 years
  • Repeatedly Helped protect Envato Marketplaces against copyright violations
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Bought between 10 and 49 items
  • Philippines
  • Referred between 10 and 49 users
bfintal says

Ok, so I did a lot of redesign and really got into the details of the theme. Here it is now: http://themes.charcoal.gambit.ph/

6 months ago in thread WP Theme Rejection, Need Help
by
by
by
by
by