David Beja
Forum Replies Created
-
Forum: Plugins
In reply to: [Author Box WP Lens] New Version Blows Up DiviHi @julialifetime,
I’m sorry for the trouble you’re experiencing.
Can you share the staging site URL to take a look? You can send it to [email protected].
Thank you,
DavidHi, yes, the code is fully parsed so any hooks, even custom ones, are detected.
Forum: Plugins
In reply to: [WP Store Locator] Category parameter on shortcode not workingThank you, Tijmen.
It seems it was my mistake.
I was adding the category slug via a PHP variable, but where I was calling the shortcode I didn’t have access to that variable.
Now it’s working.Forum: Plugins
In reply to: [Polylang] Category link jumps to home on default languageI’ve just deleted the category and re-created again and re-add it to posts and now works fine.
Ok, it was a theme conflict.
The theme was deregistering jQuery.Forum: Plugins
In reply to: [Adaptive Images for WordPress] Problems with CDN setting and Twitter imagesOn Twitter the url of the images is probably a script and not the image directly and their script is probably more strict.
You can pick any Twitter image and you can’t add parameters to the url:
https://pbs.twimg.com/profile_images/730612231021322240/Rl0_QYhL_bigger.jpg (this works)
https://pbs.twimg.com/profile_images/730612231021322240/Rl0_QYhL_bigger.jpg?something=boo (this doesn’t work)Maybe it’s the way they get the filename, some rule that gets everything after the last slash including query vars.
Forum: Plugins
In reply to: [WP Critical CSS] Nothing shows up on source codeOk, thanks.
Here it’s my skype ID: david.beja
Forum: Fixing WordPress
In reply to: Move my website to new URLCheck Moving WordPress
Forum: Fixing WordPress
In reply to: GUI Template for Admin ScreenI don’t know about any mockup components for Admin Screen, but you have wordpress-admin-style plugin which shows the WordPress admin styles on one page to help you designing a WordPress Admin screen.
It’s not the same but maybe it’s helpful for what you need.
Forum: Fixing WordPress
In reply to: tab alignment issueIt’s because button images are inside a p and on your css you have a margin bottom of 20px for paragraphs.
You can add a css rule to change the margin bottom of those paragraphs:
#pg-w595223cb72b29-0 .siteorigin-widget-tinymce p { margin-bottom: 0; }
Forum: Fixing WordPress
In reply to: Search Form in Archives.phpIs books a custom post type?
What if you add this hidden input to your form:
<input type="hidden" name="post_type" value="books" />
Forum: Fixing WordPress
In reply to: How to create ‘virtual’ pages in WordPress?And where are those projects informations saved? In a custom post type or you access that information outside WordPress?
Forum: Fixing WordPress
In reply to: Color changesSo, for the sidebar background color you can use this css:
.navbar-default { background-color: yellow; }
And to change the menu link hover background color, you can use this:
.nav > li > a:hover, .nav > li > a:focus { background-color: red; }
Forum: Fixing WordPress
In reply to: Color changesCan you add a link of your site?
I never used Amazon SES but you can integrate it with Postman SMTP plugin.
Then you need to obtain your Amazon SES SMTP credentials to setup on the plugin:
https://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-credentials.html