Naif Amoodi
Forum Replies Created
-
Forum: Reviews
In reply to: [Fields Framework] no usabilityWhat error did wp_enqueue_media generate? Let me know and I’ll look into fixing it.
Regarding the error in the image, do you get this on a completely new post too?
Forum: Reviews
In reply to: [Fields Framework] no usabilityOk looks like you have missed quite a lot there.
You said you want three fields inside the group. You must first create these 3 fields and add them to the group.
Take the following as an example:
Let’s say you want three fields viz. A, B, and C. You want to group these fields into a field group named G. Then you want to add these to a section named P. The steps you would take for this would be as follows:
Create a section named P. In your case you would be creating a Post Section by going to Builder -> Sections -> Post -> Create New
Save & your section will be ready.
Now you’ll create the three fields viz. A, B, and C. You would do this by going to Builder -> Fields. From there you’ll select the relevant type of field you are trying to create. So if you wanted ‘A’ to be a text field you’ll go to Bulder -> Fields -> Text -> Create New.
Once these fields are created, you’ll create a group field called G by going to Builder -> Fields -> Group -> Create New. Over there, look towards the bottom and you’ll see a ‘Fields’ label. Here you’ll add fields of your choice to the Group. In your case you’ll be adding A, B, and C. Also if you want this Group to be repeatable, set Repeatable to yes.
Once all this is done, go to Bulder -> Fields By Sections -> Create New and add field ‘G’ to section ‘P’.
You should be done. Now just replace the code you added to functions.php with the new code generated by the builder.
Please follow up and let me know how this goes.
Forum: Reviews
In reply to: [Fields Framework] no usabilityHi,
Can you please paste the code generated by the builder? It will become clear in a second if you could provide the code that has been generated.
Have you added the three fields to this group you created?
Forum: Reviews
In reply to: [Fields Framework] no usabilityHi there.
I’ll try my best to help you out!
Are you using the builder or are you trying to create the sections and fields directly using the functions provided?
Whatever the case, please post the code you have generated so far here: https://pastebin.com/
Forum: Reviews
In reply to: [Fields Framework] Great plugin!Thank you!
If you have any comments or suggestions, please share so that the plugin can be improved.
Forum: Plugins
In reply to: [Fields Framework] WPML developer's licenseMarking this topic as resolved.
Forum: Plugins
In reply to: [Fields Framework] WPML developer's licenseHi Mercedes,
Thank you for your prompt response. I was indeed the person who made a request yesterday.
Best Regards.
A very nice plugin but even I am experiencing the same problem. Nothing happens when the thumbnails are clicked. The error I get is:
Error: TypeError: ytcplayer[iframeid].loadVideoById is not a function
Source /wp-content/plugins/youtube-channel-gallery/scripts.js?ver=3.4.1
Line: 6I couldn’t get the W3TC plugin’s preloader to work with a sitemap index. I couldn’t get it to run with google XML sitemaps plugin either. Because I have a VPS, I set up Optimus Cache Prime instead to preload the cache.
Forum: Plugins
In reply to: [WP-DBManager] [Plugin: WP-DBManager] auto-backup fails, manual worksI am experiencing the same problem. It worked fined before but now the cron entry just disappears. I tried setting it to email a backup once every day. Once I save the settings and try reaccessing any of the pages on the site, a backup email is set but then the cron job is deleted and it shows ‘Next backup date: N/A’
Forum: Plugins
In reply to: [Post Category Only] [Plugin: Post Category Only] Show category on mainThe following code should do the trick:
function exclude_category($query) { if ( $query->is_home ) { $query->set('category__in', '7'); } return $query; } add_filter('pre_get_posts', 'exclude_category');
As you can see, I have replaced ‘cat’ with ‘category__in’. That will ensure posts from child categories aren’t displayed.
Forum: Fixing WordPress
In reply to: Need help with permanent redirectsHmm. Still no reply..? I was under the impression this should be something easy ?? Guess its not…
Forum: Fixing WordPress
In reply to: Need help with permanent redirectsI forgot to mention. I am not looking for an automated method to redirect these pages. I just have 4 pages so I have no problems placing invidual redirects for every page
Thanks! ??