ThemeForest

Posts by SyamilMJ

282 posts
  • Attended a Community Meetup
  • Sold between 10 000 and 50 000 dollars
  • Exclusive Author
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Referred between 1 and 9 users
SyamilMJ says

Thanks Geeman.

Do you mean the javascript-driven front-end options panel? No, I don’t have it and don’t plan on adding that since it’s not really important to the overall functionality of the theme.

I did however built an extensive options panel in the theme, using SMOF .

I’d probably throw in dark version of the theme, but other color variations is just unnecessary at this point in my opinion.

Cheers :)

282 posts
  • Attended a Community Meetup
  • Sold between 10 000 and 50 000 dollars
  • Exclusive Author
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Referred between 1 and 9 users
SyamilMJ says

It took me roughly 3 months to build a solid and unique theme framework.

282 posts
  • Attended a Community Meetup
  • Sold between 10 000 and 50 000 dollars
  • Exclusive Author
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Referred between 1 and 9 users
SyamilMJ says

Several months ago I came here asking for some opinions on a theme I was building. It is now nearing completion. Except for some backend polishing, code beautifying and full documentation, it should be ready for public consumption soon enough.

Now before I go through with all that, I would really appreciate if you can provide me some helpful reviews on this theme. I have no idea how the reviewing process goes, and if I’m missing any important elements inside the theme please do let me know.

The link is http://themes.aquagraphite.com/burette/

Cheers :)

282 posts
  • Attended a Community Meetup
  • Sold between 10 000 and 50 000 dollars
  • Exclusive Author
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Referred between 1 and 9 users
SyamilMJ says

That works for other videos, but screenr just returns nothing. Here’s how I call it:

/*-----------------------------------------------------------------------------------*/
/* Video Wrapper - [video width=""] url [/video]
/*-----------------------------------------------------------------------------------*/

function aq_shortcode_video_wrapper($atts, $content = null) {

    global $wp_embed, $content_width;

    $defaults = array(
        'align' => '',
        'width'    => 590,
    );

    extract( shortcode_atts( $defaults, $atts ) );

    $content_width = $width;
    $embed_code = $wp_embed->autoembed($content);    

    //$embed_code = wp_oembed_get( $content, array('width' => $width)  );

    $output = '';

    if ($width)
        $output = '<div class="aq-video-wrapper radius3 cf '.$align.'" style="width:'.$width.'px;">' . $embed_code . '</div>';

    return $output;
}

add_shortcode( 'video', 'aq_shortcode_video_wrapper' );

Funnily, if you use $wp_embed->shortcode($id,$url) as explained in this tutorial, it will output the video but the width remains unchanged.

282 posts
  • Attended a Community Meetup
  • Sold between 10 000 and 50 000 dollars
  • Exclusive Author
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Referred between 1 and 9 users
SyamilMJ says

Basically I’m trying to add support for Screenr for the built-in oEmbed protocol using this:

wp_oembed_add_provider( '#http://(www\.)?screenr\.com/.*#i', 'http://www.screenr.com/api/oembed.json', true ); // Screenr

Now whenever I try to use, for example:

[embed width="560"]http://www.screenr.com/WbZs[/embed]

The embed code outputs just fine except that it doesn’t respect the defined width. The output for the above code is:

<iframe src="http://www.screenr.com/embed/udcs" frameborder="0" height="396" width="650"></iframe>

Is there any way I could fix this?

282 posts
  • Attended a Community Meetup
  • Sold between 10 000 and 50 000 dollars
  • Exclusive Author
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Referred between 1 and 9 users
SyamilMJ says
Fran6 said
Really like that fork of Options Framework. Unfortunately not enough documentation and no examples. :-(

You can either open a ticket on Github or comment on my blog to get help/support.

As I said earlier, the tutorial/documentation is coming very soon. In the meantime, feel free to ask questions and I will help you get what you want out of this. It’s actually very easy to setup and use, especially if you already used OF before. :)

282 posts
  • Attended a Community Meetup
  • Sold between 10 000 and 50 000 dollars
  • Exclusive Author
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Referred between 1 and 9 users
SyamilMJ says
contempoinc said
Nice, looking forward to the layout manager update!

The latest version on Githbub now have this

Also as a recap:

- Remember last tab on page refresh

- Slider title updates upon typing

- Enable/Disable blocks by drag & drop inside layout manager

- Shaved off most if not all “undefined index” errors.

- Default options save to database upon first time activation/reset

Remember to turn off WP_DEBUG then hit “Reset” for first time activation. You can turn on WP_DEBUG later afterwards.

Still working on:

- XML export/import

- Unlimited sidebar

I’ll be off the grid for a while, so expect the next update to be anywhere between 2-3 weeks time.

Happy theming!

:)

282 posts
  • Attended a Community Meetup
  • Sold between 10 000 and 50 000 dollars
  • Exclusive Author
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Referred between 1 and 9 users
SyamilMJ says

Hey guys.

I will write a tutorial on how to use these options. Seems like there is not enough documentation on the WPTheming itself that explains how to use them.

Also, I have already done several fixes to the codes and added some new features. For example, now we have a drag & drop layout manager :

This new version will be uploaded soon, so stay tuned.

In the meantime, if you need any help feel free to open a ticket on Github or comment on my post about it here. :)

282 posts
  • Attended a Community Meetup
  • Sold between 10 000 and 50 000 dollars
  • Exclusive Author
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Referred between 1 and 9 users
SyamilMJ says

Usually having smilies at the end of every sentence of questionable tone will help. :)

282 posts
  • Attended a Community Meetup
  • Sold between 10 000 and 50 000 dollars
  • Exclusive Author
  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
  • Referred between 1 and 9 users
SyamilMJ says

say HELLO $35

by
by
by
by
by