We have a magento installation and when editing categories and trying to change store view I dialog box appeared saying something about store view switching in categories I stupidly ticked and accepted or something. Now in my whole magento administration store switcher is working fine BUT in Manage categories it does not work. I can select a store view but it does nothing and the box with the selected store view just goes blank.
For example if I click at Manage Categiries, then I click on a category and I desire to change the properties of this category for one of my store views this is not possible because as soon as I click on the category and then Choose a store view, the Store View dropdown select becomes blank and does nothing.
Thanks in advance
I just ran in to this and had to clear cookies from the adminhtml of my magento site. At this point, the dialog started coming back and the selected store view is filled in again!
Still a little mysterious to me as to what is going on there though...
Related
I want to save the history. Disabling everything is not a choice.
I just use the same google account on my work PC and on my private PC. When I click into the search bar of a new tab, it shows me a dropdown of recent searches - including private searches from yesterday evening. When I share my screen, my colleagues see this and might think that I've been looking for all this during work time.
How can I fix this? Do I need seperate accounts for work/private?
Yeah perhaps considering getting a separate account as manually clicking 'remove' for each search term in the drop-down can be consuming or the other option is to go to search history in google settings and clear for 'all-time'
I am unable to submit my app for review in the Microsoft app store, and when I upload my csv and resources, it accepts them and says complete, but the submit button is still greyed out and unclickable, then The page reloads, and it still says incomplete.
Here's a link to the image : https://imgur.com/VY0Evsf
CSV file doesn't complete everything, you need to go into your Store Listing (English) and make sure every field is filled properly. There surely is something missing in there, that is why it is incomplete.
firstly, my database is using a navigation form which has tabs down the side to allow the user to navigate through the forms and then all the forms within this have sub forms.
Now the issue I have is that I'm trying to run a report using a macro and the where condition so that it only shows the current record. If I view the form on its own (not through the navigation form) the button works perfectly (happy days) but when I use it through the navigation form (which is how the user will be using it) it asks me to enter the ID for the record first. Technically the report will still run but it relies on the user entering the correct ID.
this is my where condition: [ChildID]=[Forms]![frmMealChoice]![ChildID] is there a way to navigate to a subform in the where condition?
Sorry if that doesn't make much sense but I can't think of a better way of explaining it, any help would be greatly appreciated.
As I stated in the comments I figured out where I went almost instantly after posting the question. So for anyone interested here is my ammeded where condition;
[ChildID]=[Forms]![FrmMainNavigation]![NavigationSubform]![ChildID]
I am trying to build a pop up zoom box which will be activated on a report embedded in a form allowing the user to click on the report and view a field on the underlying table which the report is demonstrating. Furthermore, the user will also have the opportunity to edit the fields contents which the zoom box, upon closing will then paste into the field in the underlying table.
A colleague of mine confirmed for me that this is possible and put me on the right track by showing me that it is possible to extract a field by creating a control on a report. However, i am missing the part to repaste the updates into the underlying field.
Being a report, Sift F2 does not allow the edit..
I would appreciate any advice available.
Thanks,
A
Fantastic effort given by HansUp in live chat directing me to exactly what i needed!
DoCmd.OpenForm "frmZoom2", WhereCondition:="[ID] = " & Me.txtPrimaryKey
One of our applications uses open graph tags so that when users like or comment on a page, the resulting feed story is rich with content, images etc.
Another part of our application (the web platform side) allows users to connect to a Facebook profile page so they can manage the wall, add apps to their profile page etc.
Trouble is, by calling /me/accounts, you get all open graph objects that user has rights to and not just the proper profile pages.
Is there any way to differentiate between types do the users don't have potentially thousands of pages to sift through when they want to connect to their profile page? For example, in Facebook, if I click "Use Facebook as a Page" in the top right drop down, that list is filtered to be just the profile pages and not every single open graph object I'm considered an admin for. How can we get just that list of pages?
you can use FQL for that, the following query should give you relevant info:
SELECT page_id, type
FROM page_admin
WHERE uid=me()
AND type="COMPANY"
hope this helps