DEV Community

hub
hub

Posted on

tweaks for Astoundifys Jobify-theme...

how to add more examples to the Wordpress jobify widget (developed by astoundify) called companies we ve helped?
To add more examples to the "Companies We've Helped" widget in Jobify by Astoundify, you can follow these steps:

Log in to your WordPress dashboard.
Go to the "Appearance" section and click on "Widgets."
Find the "Companies We've Helped" widget and click on the arrow to expand its settings.
You should see a list of companies already displayed in the widget. To add more, simply click on the "Add New" button.
In the new window, enter the company name, a brief description of how you helped them, and upload a logo or image.
Click "Save" to add the new company to the widget.
Repeat these steps as many times as you need to add all the companies you want to display in the widget. Once you've added all the companies, make sure to click the "Save" button to save the changes.

Note: Depending on your version of Jobify and your WordPress theme, the exact steps and interface may differ slightly. However, the general process should be similar.

which methods do we have to extend the wordpress-theme called jobify (developed by astoundify.com) with the plugin Advanced Custom Fields ACF?

There are several methods you can use to extend the Jobify WordPress theme with the Advanced Custom Fields (ACF) plugin:

Create Custom Fields in ACF:
You can create custom fields in ACF and then add them to the appropriate template files within the Jobify theme. This will allow you to display the custom fields on specific pages or posts as needed.

Modify Existing Templates:
You can modify the existing Jobify theme templates to include the ACF fields that you have created. This will require some knowledge of PHP and WordPress template hierarchy.

Create New Templates:
You can create new templates in the Jobify theme specifically designed to display your ACF fields. This will require some knowledge of PHP and WordPress template hierarchy.

Use Shortcodes:
ACF provides shortcodes that you can use to display custom fields anywhere on your website, including within the Jobify theme. You can add these shortcodes to pages, posts, or widgets to display your custom fields.

Overall, the best method to use will depend on your specific needs and the level of customization you require.

some examples for creating new templates in the Jobify theme specifically designed to display ACF fields
Certainly! Here are some examples of how you can create new templates in the Jobify theme to display ACF fields:

Create a new template file for a custom post type:
If you have created a custom post type and want to display ACF fields for that post type, you can create a new template file for it. For example, if your custom post type is called "portfolio", you can create a new file in your theme directory called "single-portfolio.php" and use the ACF functions to display the custom fields.

Create a custom page template:
You can create a custom page template that includes ACF fields. This will allow you to apply the template to specific pages on your site. For example, you can create a template file called "template-custom.php" and add the ACF functions to display the custom fields.

Create a custom widget:
You can create a custom widget that includes ACF fields. This will allow you to display custom fields in a widgetized area on your site. You can use the ACF widget functions to display the custom fields within the widget.

Overall, creating new templates in the Jobify theme specifically designed to display ACF fields will require some knowledge of PHP and WordPress template hierarchy. You can refer to the ACF documentation for more information on how to use ACF functions to display custom fields.

Top comments (0)