Schedule a Free Consultation

Find the Resources to Succeed with WordPress

The go-to resource for WordPress insights & tips
and where WordPress experts share their knowledge.

Mastermind.fm interview – About Business & Personal Growth
Mastermind.fm interview – About Business & Personal Growth
I have been interviewed recently by Mark Zahra, from mastermind.fm We’ve discussed life, business, and personal growth. You can find the podcast here: http://mastermind.fm/episode-85-mark-talks-business-personal-growth-marius-vetrici/
How to Grow Your WordPress Meetup to 1000+ Members - WPRiders Article
How to Grow Your WordPress Meetup to 1000+ Members
About Bucharest WordPress Meetup Bucharest WordPress Meetup is a community of 1054 WordPress enthusiasts at the time of writing, who have regularly gathered together for more than 34 events throughout the previous three years. Marius Vetrici is one of the founding members of the Bucharest WordPress meetup and is the event host. If you are […]
Practical Gruntfile to Automate Project Related Tasks
Productivity! Oh, yes! The ever-elusive goal of a software developer. No matter how much one tries, trivial tasks will aGrunt is a popular tool that assists developers to automate code management actions, but practical applications of this tool are still elusive. In this article, we share our take on using Grunt to process CSS and […]
Parsing Email Structure With IMAP Functions
Have you ever had to parse the structure of an email, which contains html, text and images? Easier said than done 😅 As a developer, you need to examine the email content, extract images or text, and do something with them, like upload the images to the web server or save them to a database. […]
Agile WordPress Development: How to Maximize the ROI of Your MVP Website
7 years ago, I’ve spent around $200,000 on a product that never took off. That was my own money, earned fromoutsourcing, and I’ve learned some expensive lessons down the road which I’d like to share with you today. Here’s how it all usually begins… Finding the Product/Market Fit Is Very Hard You’ve got an idea […]
Live Templates Provide Code Snippets Library in PhpStorm
Using Live Templates in PhpStorm, developers insert code snippets and provide values for parameters. For quite some time, PhpStorm has been one of the leading development tools, as it allows developers to apply their ideas into code with impressive speed. Among the features that stand out, PhpStorm’s ability to navigate between files and auto-complete keywords […]
How to Test Your WordPress Website Before Updating It (Step-by-Step Process & Tools) - WPRiders Article
How to Test Your WordPress Website Before Updating It (Step-by-Step Process & Tools)
It’s easy to just go ahead and update your WordPress website, your theme, and plugin files by yourself. You just hit the “update” button three times and the job is, well… mostly done. You think that. Everybody thinks that too. But that’s not where the real challenge lies and where some issues might arise eventually. […]
Keyword Density Check: Fast and Accurate
The Keyword Density Check plugin provides the data needed to choose which keywords to associate with your post. When putting the final touches on your post, you frequently ask which keyword should you choose. Alternatively, you wonder whether your option for a keyword is really relevant to the post – some of the important decisions […]
Opening Isotope Panel in Modal View
We matched Isotope’s innate ability to manage content with the need to display more details in a modal view. The popular Isotope framework for displaying content offers novel ways of arranging elements on a page. Specifically, in this post, we explain how we managed to display the content of table cell under the current table […]
Scaling Your Freelance Business – OfficeHours.fm Interview With Marius Vetrici
Scaling Your Freelance Business – OfficeHours.fm Interview With Marius Vetrici
I was recently interviewed by@CarrieDilson how did we scale from Freelancing to WordPress development agency. Here under you can find the podcast: Full Transcript of the Article Male Speaker: You’re listening to OfficeHours.fm the podcast where we put WordPress to work, peek inside the minds of successful business owners, meet amazing people from the WordPress […]
WordPress Cron Save Post With Unfiltered html Content
WordPress Cron Save Post With Unfiltered html Content
This applies for method “wp_insert_post” used inside a WordPress Cron. By default WordPress checks if the user has the capability to save unfiltered HTML content if ( ! current_user_can( ‘unfiltered_html’ ) ) { which WP CRON doesn’t have.
PHP Remote File Existence
PHP Remote File Existence
This is one of the good ways to check if a file exists in a remote location. Another good way to implement a similar functionality is to use CURL.